| | |
| | | @Schema(description = "采购退货数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal returnCount; |
| | | |
| | | // ========== 审批信息(轻量级状态机审批) ========== |
| | | |
| | | @Schema(description = "审核人编号", example = "1") |
| | | private Long reviewerId; |
| | | |
| | | @Schema(description = "审核人昵称", example = "超级管理员") |
| | | @ExcelProperty("审核人") |
| | | private String reviewerName; |
| | | |
| | | @Schema(description = "审核时间") |
| | | @ExcelProperty("审核时间") |
| | | private LocalDateTime reviewTime; |
| | | |
| | | @Schema(description = "审核意见(审核不通过时为驳回原因)", example = "同意采购") |
| | | @ExcelProperty("审核意见") |
| | | private String reviewRemark; |
| | | |
| | | @Data |
| | | public static class Item { |
| | | |