| | |
| | | @ExcelProperty("编制时间") |
| | | private LocalDateTime draftTime; |
| | | |
| | | @Schema(description = "审核人ID", example = "2") |
| | | @Schema(description = "审核人ID(提交审核时由编制人指定)", example = "2") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人姓名", example = "李工") |
| | |
| | | @ExcelProperty("审核时间") |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核意见(审批通过时的意见 / 驳回时的原因)", example = "参数需与客户再次核对") |
| | | @ExcelProperty("审核意见") |
| | | private String reviewRemark; |
| | | |
| | | @Schema(description = "客户确认人", example = "王经理") |
| | | @ExcelProperty("客户确认人") |
| | | private String customerConfirmUser; |
| | |
| | | @ExcelProperty("客户确认时间") |
| | | private LocalDateTime customerConfirmTime; |
| | | |
| | | @Schema(description = "状态(0=草稿,1=待审核,2=已审核,3=客户已确认)", example = "0") |
| | | @Schema(description = "状态(0=草稿,1=待审核,2=已审核,3=客户已确认,4=审核不通过)", example = "0") |
| | | @ExcelProperty(value = "状态", converter = DictConvert.class) |
| | | @DictFormat(DictTypeConstants.PRODUCT_TECH_CONFIRM_STATUS) |
| | | private Integer status; |