fix(资料中心): 消息内容修改
This commit is contained in:
+4
-3
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
-2
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user