| | |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
| | | import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY; |
| | | |
| | | @Schema(description = "管理后台 - ERP 采购申请分页 Request VO") |
| | | @Data |
| | |
| | | @Schema(description = "申请部门编号", example = "1") |
| | | private Long requestDeptId; |
| | | |
| | | @Schema(description = "申请时间") |
| | | @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
| | | private LocalDateTime[] requestTime; |
| | | @Schema(description = "供应商编号", example = "1") |
| | | private Long supplierId; |
| | | |
| | | @Schema(description = "审批状态", example = "20") |
| | | @Schema(description = "状态", example = "0") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "申请理由", example = "生产需要") |
| | | private String requestReason; |
| | | @Schema(description = "申请时间") |
| | | @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY) |
| | | private LocalDateTime[] requestTime; |
| | | |
| | | @Schema(description = "产品编号", example = "1") |
| | | private Long productId; |