Kaynağa Gözat

add: 违规分析

Scott 2 yıl önce
ebeveyn
işleme
ba35011b7a

+ 1 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/common/bo/before/AuditAdvanceWarningAuditDetailResponse.java

@@ -15,6 +15,7 @@ import java.util.Date;
 @Data
 @ApiModel(value = "稽核-事前提醒明细统计")
 public class AuditAdvanceWarningAuditDetailResponse {
+    private Integer id;
     @ApiModelProperty(value = "患者id")
     private String patientId;
 

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/service/impl/ViolationAnalysisServiceImpl.java

@@ -53,7 +53,7 @@ public class ViolationAnalysisServiceImpl implements IViolationAnalysisService {
         AdvanceWarningAuditDetail entity = new AdvanceWarningAuditDetail();
         BeanUtils.copyProperties(advanceWarningAuditDetail, entity);
         QueryWrapper<AdvanceWarningAuditDetail> queryWrapper = QueryGenerator.initQueryWrapper(entity, parameterMap);
-        Page<AdvanceWarningAuditDetail> page = new Page<AdvanceWarningAuditDetail>(pageNo, pageSize);
+        Page<AdvanceWarningAuditDetail> page = new Page<>(pageNo, pageSize);
         IPage<AdvanceWarningAuditDetail> pageList = advanceWarningAuditDetailService.page(page, queryWrapper);
         List<AdvanceWarningAuditDetail> records = pageList.getRecords();
         if (!CollectionUtils.isEmpty(records)) {