Browse Source

修改注释

songxinlu 3 năm trước cách đây
mục cha
commit
4e345279ac

+ 2 - 2
src/main/java/com/diagbot/dto/NewsNoticePageDTO.java

@@ -8,11 +8,11 @@ import lombok.Setter;
 import java.io.Serializable;
 
 /**
- * @Description: 消息通知--获取未读消息数量-接口出参
+ * @Description: 消息通知--列表页查询-接口出参
  * @Author songxl
  * @Date 2022/4/12 9:20
  */
-@ApiModel(value = "消息通知--获取未读消息数量-接口出参")
+@ApiModel(value = "消息通知--列表页查询-接口出参")
 @Getter
 @Setter
 public class NewsNoticePageDTO implements Serializable {

+ 2 - 2
src/main/java/com/diagbot/vo/NewsNoticePageVO.java

@@ -9,11 +9,11 @@ import lombok.Setter;
 import java.io.Serializable;
 
 /**
- * @Description: 消息通知--获取未读消息数量-接口入参
+ * @Description: 消息通知--列表页查询-接口入参
  * @Author songxl
  * @Date 2022/4/11 9:20
  */
-@ApiModel(value = "消息通知--获取未读消息数量-接口入参")
+@ApiModel(value = "消息通知--列表页查询-接口入参")
 @Getter
 @Setter
 public class NewsNoticePageVO extends Page implements Serializable {

+ 4 - 4
src/main/java/com/diagbot/web/MedNewsNoticeController.java

@@ -35,16 +35,16 @@ public class MedNewsNoticeController {
     @Autowired
     private MedNewsNoticeFacade medNewsNoticeFacade;
 
-    @ApiOperation(value = "消息通知-列表页查询[by:songxl]",
-            notes = "消息通知-列表页查询")
+    @ApiOperation(value = "消息通知-获取未读消息数量[by:songxl]",
+            notes = "消息通知-获取未读消息数量")
     @PostMapping("/getNewsCount")
     public RespDTO<Map<String,Integer>> getNewsCount() {
         return RespDTO.onSuc(medNewsNoticeFacade.getNewsCount());
     }
 
 
-    @ApiOperation(value = "消息通知--获取未读消息数量[by:songxl]",
-            notes = "消息通知--获取未读消息数量")
+    @ApiOperation(value = "消息通知--列表页查询[by:songxl]",
+            notes = "消息通知--列表页查询")
     @PostMapping("/newsNoticePage")
     public RespDTO<IPage<NewsNoticePageDTO>> newsNoticePage(@RequestBody NewsNoticePageVO newsNoticePageVO) {
         return RespDTO.onSuc(medNewsNoticeFacade.newsNoticePage(newsNoticePageVO));