From 984cab3089b6b0adadcb91bed4adfc2fa2ee5003 Mon Sep 17 00:00:00 2001 From: yss <17921@qq.com> Date: Tue, 18 Apr 2023 17:20:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=85=E9=98=85=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../client/NotificationFeignClient.java | 2 +- .../NotificationFeignFallbackFactory.java | 2 +- .../controller/BizReadingController.java | 19 +++++++----- .../NoticeReadingUpdateRequestBody.java | 7 ++++- .../service/BizReadingService.java | 4 ++- .../service/impl/BizReadingServiceImpl.java | 29 ++++++++++++++++--- 6 files changed, 47 insertions(+), 16 deletions(-) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignClient.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignClient.java index 1323887..8f28a9d 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignClient.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignClient.java @@ -30,7 +30,7 @@ public interface NotificationFeignClient { @ApiOperation(value = "新增待阅", tags = "新增待阅", notes = "新增待阅") @PostMapping("/v1/notification/sendReading") @OperationLogDetail(businessModule = EbtpLogBusinessModule.OTHER,operationType = EbtpLogType.SELECT,detail = "待阅-新增") - BaseResponse sendPending(@Valid @RequestBody NoticeReadingPO noticeReadingPO); + BaseResponse sendReading(@Valid @RequestBody NoticeReadingPO noticeReadingPO); @ApiOperation(value = "待阅更新或删除", tags = "待阅更新或删除", notes = "待阅更新或删除") @PostMapping("/v1/notification/updateReading") diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignFallbackFactory.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignFallbackFactory.java index 29a5916..21c86c5 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignFallbackFactory.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/bizshortmessageemail/client/NotificationFeignFallbackFactory.java @@ -32,7 +32,7 @@ public class NotificationFeignFallbackFactory implements FallbackFactory