Browse Source

"取消日志存储"

yangjunfeng 8 months ago
parent
commit
b8bc855505

+ 9 - 9
hnls-gps/hnls-gps-boot/src/main/java/com/tofly/gpsboot/controller/plan/daily/PlanController.java

@@ -48,7 +48,7 @@ public class PlanController {
 
     @GetMapping("/page")
     @ApiOperation(value = "分页查询")
-    @ToFlyAppLog(title = "分页查询巡检计划详细信息")
+//    @ToFlyAppLog(title = "分页查询巡检计划详细信息")
     public ResultRespone<Page<Plan>> getPlanPage(Page page, @ModelAttribute PlanDto parDto) {
         ResultRespone<Page<Plan>> rest = new ResultRespone<>();
         try {
@@ -63,7 +63,7 @@ public class PlanController {
     }
     @GetMapping("/getPlanTimeIntervalPage")
     @ApiOperation(value = "分页查询巡检计划满足时间范围内详细信息")
-    @ToFlyAppLog(title = "分页查询巡检计划满足时间范围内详细信息")
+//    @ToFlyAppLog(title = "分页查询巡检计划满足时间范围内详细信息")
     public ResultRespone<Page<Plan>> getPlanTimeIntervalPage(Page page, @ModelAttribute PlanDto parDto) {
         ResultRespone<Page<Plan>> rest = new ResultRespone<>();
         try {
@@ -79,7 +79,7 @@ public class PlanController {
 
     @ApiOperation(value = "新增基本信息对象")
     @PostMapping("/save")
-    @ToFlyAppLog(title = "新增巡检计划详细信息")
+//    @ToFlyAppLog(title = "新增巡检计划详细信息")
     public ResultRespone<Object> savePlan(@Valid @RequestBody PlanDto parDto) {
         ResultRespone<Object> rest = new ResultRespone<>();
         // 数据校验 判空返回
@@ -97,7 +97,7 @@ public class PlanController {
 
     @ApiOperation(value = "修改基本信息")
     @PutMapping("/updata")
-    @ToFlyAppLog(title = "修改巡检计划详细信息")
+//    @ToFlyAppLog(title = "修改巡检计划详细信息")
     public ResultRespone<Object> updateByIdPlan(@Valid @RequestBody PlanDto parDto) {
         ResultRespone<Object> rest = new ResultRespone<>();
         // 数据校验 判空返回
@@ -119,7 +119,7 @@ public class PlanController {
             @ApiImplicitParam(name = "planState", value = "planState 3 正在执行 5 已开始未执行", required = true, dataType = "String"),
             @ApiImplicitParam(name = "userId", value = "userId", required = true, dataType = "Long"),
     })
-    @ToFlyAppLog(title = "修改计划状态")
+//    @ToFlyAppLog(title = "修改计划状态")
     public ResultRespone<Boolean> updatePlanState(Long planId, String planState, Long userId) {
         ResultRespone<Boolean> rest = new ResultRespone<>();
         try {
@@ -139,7 +139,7 @@ public class PlanController {
     @ApiImplicitParams({
             @ApiImplicitParam(name = "id", value = "ID", required = true, dataType = "Long")
     })
-    @ToFlyAppLog(title = "通过ID查询巡检计划详细信息")
+//    @ToFlyAppLog(title = "通过ID查询巡检计划详细信息")
     public ResultRespone<Plan> getByIdPlan(@PathVariable Long id) {
         ResultRespone<Plan> rest = new ResultRespone<>();
         try {
@@ -157,7 +157,7 @@ public class PlanController {
             @ApiImplicitParam(name = "idList", value = "批量删除,多个id以逗号隔开", required = true, dataType = "String")
     })
     @DeleteMapping("/deleteByIds")
-    @ToFlyAppLog(title = "通过ID批量删除巡检计划详细信息")
+//    @ToFlyAppLog(title = "通过ID批量删除巡检计划详细信息")
     public ResultRespone<Object> removeByIdListPlan(String idList) {
         ResultRespone<Object> rest = new ResultRespone<>();
         try {
@@ -177,7 +177,7 @@ public class PlanController {
             @ApiImplicitParam(name = "id", value = "计划id", required = true, dataType = "Long"),
             @ApiImplicitParam(name = "flag", value = "是否展示部门下所有数据 是则填1 个人不填为空", required = false, dataType = "String")
     })
-    @ToFlyAppLog(title = "通过ID查询计划详情")
+//    @ToFlyAppLog(title = "通过ID查询计划详情")
     public ResultRespone<List<PlanDetailVo>> getPlanDetail(Long id, String flag) {
         ResultRespone<List<PlanDetailVo>> rest = new ResultRespone<>();
         try {
@@ -192,7 +192,7 @@ public class PlanController {
 
     @GetMapping("/planUrgent")
     @ApiOperation(value = "巡检计划加急督办处理")
-    @ToFlyAppLog(title = "巡检计划加急督办处理")
+//    @ToFlyAppLog(title = "巡检计划加急督办处理")
     @ApiImplicitParams({
             @ApiImplicitParam(name = "planId", value = "巡检计划计划id", required = true, dataType = "Long"),
             @ApiImplicitParam(name = "planState", value = "计划状态", required = true, dataType = "String"),

+ 4 - 4
hnls-gps/hnls-gps-boot/src/main/java/com/tofly/gpsboot/controller/sign/PdasignController.java

@@ -51,14 +51,14 @@ public class PdasignController extends BaseController<Pdasign, PdasignVo> {
 
     @GetMapping("/page")
     @ApiOperation(value = "分页查询")
-    @ToFlyAppLog(title = "分页查询上下班签到瞬时信息")
+//    @ToFlyAppLog(title = "分页查询上下班签到瞬时信息")
     public ResultRespone<Page<PdasignVo>> getPdasignPage(Page page, @ModelAttribute PdasignDto parDto) {
         return super.getInfoPage(page, JSON.parseObject(JSON.toJSONString(parDto), Pdasign.class));
     }
 
     @ApiOperation(value = "用户签到")
     @PostMapping("/userSign")
-    @ToFlyAppLog(title = "用户签到")
+//    @ToFlyAppLog(title = "用户签到")
     public ResultRespone<Object> userSign(@Valid @RequestBody PdasignDto parDto, BindingResult result) {
         ResultRespone<Object> rest = new ResultRespone<>();
         try {
@@ -78,7 +78,7 @@ public class PdasignController extends BaseController<Pdasign, PdasignVo> {
     @ApiImplicitParams({
             @ApiImplicitParam(name = "id", value = "id", required = true, dataType = "Long")
     })
-    @ToFlyAppLog(title = "根据用户id 查询当前用户是否签到,签到类型;1:上班 2:下班")
+//    @ToFlyAppLog(title = "根据用户id 查询当前用户是否签到,签到类型;1:上班 2:下班")
     public ResultRespone<String> getByIdBuild(@PathVariable Long id) {
         ResultRespone<String> rest = new ResultRespone<>();
         try {
@@ -96,7 +96,7 @@ public class PdasignController extends BaseController<Pdasign, PdasignVo> {
 
     @GetMapping("/getUserSignList")
     @ApiOperation(value = "获取当前用户下部门中所有人员的签到信息")
-    @ToFlyAppLog(title = "获取当前用户下部门中所有人员的签到信息")
+//    @ToFlyAppLog(title = "获取当前用户下部门中所有人员的签到信息")
     @ApiImplicitParams({
             @ApiImplicitParam(name = "groupId", value = "分组id", required = false, dataType = "Long"),
             @ApiImplicitParam(name = "time", value = "查询时间 不传默认今天,格式 YYYY-MM-DD HH:mm:ss", required = false, dataType = "String"),