fix(资料中心): 消息内容修改

This commit is contained in:
yjz
2024-07-19 17:07:14 +08:00
parent ba706da840
commit 14984ba590
2 changed files with 4 additions and 5 deletions
@@ -85,10 +85,11 @@ public class StandardInterpretFlowController {
@AutoLog(value = "标准解读流程-首页-最新解读标准", operateType = CommonConstant.OPERATE_TYPE_1)
@ApiOperation(value="标准解读流程-首页-最新解读标准", notes="标准解读流程-首页-最新解读标准")
@GetMapping(value = "/homeNewestStandardInterpret")
public Result<IPage<HomeNewestStandardInterpret>> homeNewestStandardInterpret(@RequestParam(name="pageNo", defaultValue="1")
public Result<IPage<HomeNewestStandardInterpret>> homeNewestStandardInterpret(
@RequestParam(name="pageNo", defaultValue="1")
Integer pageNo,
@RequestParam(name="pageSize", defaultValue="10")
Integer pageSize) {
@RequestParam(name="pageSize", defaultValue="10")
Integer pageSize) {
return Result.OK(standardInterpretFlowService.homeNewestStandardInterpret(pageNo, pageSize));
}
@@ -160,7 +160,6 @@ public class LawsDataCenterFileServiceImpl extends ServiceImpl<LawsDataCenterFil
Map<String, String> sendMap = new HashMap<>();
sendMap.put("fileName", String.join(",", fileNameList));
sendMap.put("fileDescription", StringUtils.isBlank(lawsDataCenterFile.getFileDescription()) ? "" : lawsDataCenterFile.getFileDescription());
sendMap.put(UPLOADER, lawsDataCenterFile.getUploader());
sendMessageDTO.setMap(sendMap);
sendMessageAPI.sendMessage(sendMessageDTO);
}
@@ -231,7 +230,6 @@ public class LawsDataCenterFileServiceImpl extends ServiceImpl<LawsDataCenterFil
Map<String, String> sendMap = new HashMap<>();
sendMap.put("fileName", lawsDataCenterFile.getFileName());
sendMap.put("fileDescription", StringUtils.isBlank(lawsDataCenterFile.getFileDescription()) ? "" : lawsDataCenterFile.getFileDescription());
sendMap.put(UPLOADER, dataCenterFile.getUploader());
sendMessageDTO.setMap(sendMap);
sendMessageAPI.sendMessage(sendMessageDTO);
}