|
@@ -24,14 +24,6 @@ public class SpecimenOutboundWithInfoRespVO {
|
|
|
@ExcelProperty("主键")
|
|
|
private Long id;
|
|
|
|
|
|
- @Schema(description = "关联到总表中的标本ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
- @ExcelProperty("关联到总表中的标本ID")
|
|
|
- private String infoId;
|
|
|
-
|
|
|
- @Schema(description = "申请出库的标本编号", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
- @ExcelProperty("申请出库的标本编号")
|
|
|
- private String number;
|
|
|
-
|
|
|
@Schema(description = "申请人姓名", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三")
|
|
|
@ExcelProperty("申请人姓名")
|
|
|
private String applicantName;
|
|
@@ -69,6 +61,58 @@ public class SpecimenOutboundWithInfoRespVO {
|
|
|
@DictFormat(DictTypeConstants.MUSEUMS_APPROAL_STATUS)
|
|
|
private Integer status;
|
|
|
|
|
|
+ @Schema(description = "回库附件上传", example = "2")
|
|
|
+ @ExcelProperty(value = "回库附件上传")
|
|
|
+ private String sampleStatus;
|
|
|
+
|
|
|
+ @Schema(description = "一审审批建议", example = "27504")
|
|
|
+ @ExcelProperty("一审审批建议")
|
|
|
+ private String processInstanceId;
|
|
|
+
|
|
|
+ @Schema(description = "二审审批建议", example = "27504")
|
|
|
+ @ExcelProperty("二审审批建议")
|
|
|
+ private String rejectionReasons;
|
|
|
+
|
|
|
+ @Schema(description = "出库员")
|
|
|
+ @ExcelProperty("出库员")
|
|
|
+ private Long operator;
|
|
|
+
|
|
|
+ @Schema(description = "出库时间")
|
|
|
+ @ExcelProperty("出库时间")
|
|
|
+ private LocalDateTime outgoingTime;
|
|
|
+
|
|
|
+ @Schema(description = "退还人")
|
|
|
+ @ExcelProperty("退还人")
|
|
|
+ private String returner;
|
|
|
+
|
|
|
+ @Schema(description = "点收人")
|
|
|
+ @ExcelProperty("点收人")
|
|
|
+ private String receiver;
|
|
|
+
|
|
|
+ @Schema(description = "退还日期")
|
|
|
+ @ExcelProperty("退还日期")
|
|
|
+ private LocalDateTime returnDate;
|
|
|
+
|
|
|
+ @Schema(description = "一审时间")
|
|
|
+ @ExcelProperty("一审时间")
|
|
|
+ private LocalDateTime approvalTime;
|
|
|
+
|
|
|
+ @Schema(description = "二审时间")
|
|
|
+ @ExcelProperty("二审时间")
|
|
|
+ private LocalDateTime twoApprovalTime;
|
|
|
+
|
|
|
+ @Schema(description = "一审批员")
|
|
|
+ @ExcelProperty("一审批员")
|
|
|
+ private Long approveUsers;
|
|
|
+
|
|
|
+ @Schema(description = "二审批员")
|
|
|
+ @ExcelProperty("二审批员")
|
|
|
+ private Long twoApproveUsers;
|
|
|
+
|
|
|
+ @Schema(description = "回库备注信息")
|
|
|
+ @ExcelProperty("回库备注信息")
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
@Schema(description = "关联标本信息分页")
|
|
|
@ExcelProperty("关联标本信息")
|
|
|
private PageResult<SpecimenInfoRespVO> specimenInfoList;
|