| | |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "审核人用户编号", example = "2") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人姓名", example = "李工") |
| | | @ExcelProperty("审核人") |
| | | private String reviewerName; |
| | | |
| | | @Schema(description = "审核时间") |
| | | @ExcelProperty("审核时间") |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核意见(审核通过时的意见 / 审核不通过时的原因)", example = "资料需补充完整") |
| | | @ExcelProperty("审核意见") |
| | | private String reviewRemark; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |