From a2c792ee79e69224d71dc6204c6cc01f92b9384e Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期一, 23 八月 2021 16:14:46 +0800
Subject: [PATCH] [新增]整理代码规范

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComSwDangerReportService.java |   23 +++++++++++++----------
 1 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComSwDangerReportService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComSwDangerReportService.java
index c9bd748..636e7f1 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComSwDangerReportService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComSwDangerReportService.java
@@ -1,16 +1,13 @@
 package com.panzhihua.service_community.service;
 
+import java.util.List;
+
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.panzhihua.common.model.dtos.community.ComSwDangerReportHandleDTO;
 import com.panzhihua.common.model.dtos.community.ComSwDangerReportRectifyDTO;
 import com.panzhihua.common.model.dtos.community.ComSwPatrolRecordPageDTO;
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.service_community.model.dos.ComSwDangerReportDO;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestParam;
-
-import java.util.List;
 
 /**
  * @auther txb
@@ -21,7 +18,9 @@
 
     /**
      * 分页查询隐患报告
-     * @param comSwPatrolRecordPageDTO 查询参数
+     * 
+     * @param comSwPatrolRecordPageDTO
+     *            查询参数
      * @return 隐患报告分页集合
      */
     R pageDangerReport(ComSwPatrolRecordPageDTO comSwPatrolRecordPageDTO);
@@ -29,7 +28,8 @@
     /**
      * 根据隐患报告id查询详情
      *
-     * @param dangerReportId 隐患报告id
+     * @param dangerReportId
+     *            隐患报告id
      * @return 隐患报告详情查询结果
      */
     R detailDangerReport(Long dangerReportId);
@@ -37,7 +37,8 @@
     /**
      * 根据巡查记录id查询隐患报告详情
      *
-     * @param patrolRecordId 巡查记录id
+     * @param patrolRecordId
+     *            巡查记录id
      * @return 隐患报告详情查询结果
      */
     R detailDangerReportByPrId(Long patrolRecordId);
@@ -45,7 +46,8 @@
     /**
      * 处理隐患报告
      *
-     * @param comSwDangerReportHandleDTO 隐患报告处理参数
+     * @param comSwDangerReportHandleDTO
+     *            隐患报告处理参数
      * @return 处理结果
      */
     R handleDangerReport(ComSwDangerReportHandleDTO comSwDangerReportHandleDTO);
@@ -53,7 +55,8 @@
     /**
      * 整改隐患报告
      *
-     * @param comSwDangerReportRectifyDTO 隐患报告整改参数
+     * @param comSwDangerReportRectifyDTO
+     *            隐患报告整改参数
      * @return 整改结果
      */
     R rectifyDangerReport(ComSwDangerReportRectifyDTO comSwDangerReportRectifyDTO);

--
Gitblit v1.7.1