| | |
| | | @ExcelProperty(value = "状态", converter = cn.iocoder.yudao.module.erp.convert.ErpPurchaseRequestStatusConvert.class) |
| | | private Integer status; |
| | | |
| | | @Schema(description = "流程实例编号(已废弃,轻量级审批不再使用)", example = "1024") |
| | | @Deprecated |
| | | private String processInstanceId; |
| | | |
| | | // ========== 审批信息(轻量级状态机审批) ========== |
| | | |
| | | @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; |
| | | |
| | | @Schema(description = "申请人编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @ExcelProperty("申请人编号") |
| | | private Long requestUserId; |