Merge branch 'main' of http://114.55.171.231:3000/lxd/inspect-backend
This commit is contained in:
commit
1dbfa02440
@ -79,4 +79,10 @@ public class InspectPatientPageReqVO extends PageParam {
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
private LocalDateTime[] auditorTime;
|
||||
|
||||
@Schema(description = "审核状态")
|
||||
private Integer auditStatus;
|
||||
|
||||
@Schema(description = "总检意见")
|
||||
private String inspectionOpinion;
|
||||
|
||||
}
|
@ -98,4 +98,12 @@ public class InspectPatientRespVO {
|
||||
@ExcelProperty("审核时间")
|
||||
private LocalDateTime auditorTime;
|
||||
|
||||
@Schema(description = "审核状态")
|
||||
@ExcelProperty("审核状态")
|
||||
private Integer auditStatus;
|
||||
|
||||
@Schema(description = "总检意见")
|
||||
@ExcelProperty("总检意见")
|
||||
private String inspectionOpinion;
|
||||
|
||||
}
|
@ -75,4 +75,10 @@ public class InspectPatientSaveReqVO {
|
||||
@Schema(description = "审核时间")
|
||||
private LocalDateTime auditorTime;
|
||||
|
||||
@Schema(description = "审核状态")
|
||||
private Integer auditStatus;
|
||||
|
||||
@Schema(description = "总检意见")
|
||||
private String inspectionOpinion;
|
||||
|
||||
}
|
@ -58,4 +58,7 @@ public class InspectPatientitemsPageReqVO extends PageParam {
|
||||
@Schema(description = "是否阳性 1:阳性")
|
||||
private String positive;
|
||||
|
||||
@Schema(description = "根据检查结论分析")
|
||||
private String analyse;
|
||||
|
||||
}
|
@ -71,4 +71,8 @@ public class InspectPatientitemsRespVO {
|
||||
@ExcelProperty("是否阳性 1:阳性")
|
||||
private String positive;
|
||||
|
||||
@Schema(description = "根据检查结论分析")
|
||||
@ExcelProperty("根据检查结论分析")
|
||||
private String analyse;
|
||||
|
||||
}
|
@ -59,4 +59,7 @@ public class InspectPatientitemsSaveReqVO {
|
||||
@Schema(description = "是否阳性 1:阳性")
|
||||
private String positive;
|
||||
|
||||
@Schema(description = "根据检查结论分析")
|
||||
private String analyse;
|
||||
|
||||
}
|
@ -124,5 +124,15 @@ public class InspectPatientDO {
|
||||
*/
|
||||
@TableField("auditorTime")
|
||||
private LocalDateTime auditorTime;
|
||||
/**
|
||||
* 审核状态
|
||||
*/
|
||||
@TableField("auditStatus")
|
||||
private Integer auditStatus;
|
||||
/**
|
||||
* 总检意见
|
||||
*/
|
||||
@TableField("inspectionOpinion")
|
||||
private String inspectionOpinion;
|
||||
|
||||
}
|
@ -98,5 +98,10 @@ public class InspectPatientitemsDO {
|
||||
*/
|
||||
@TableField("positive")
|
||||
private String positive;
|
||||
/**
|
||||
* 根据检查结论分析
|
||||
*/
|
||||
@TableField("analyse")
|
||||
private String analyse;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user