| | |
| | | @Schema(description = "定金金额,单位:元", requiredMode = Schema.RequiredMode.REQUIRED, example = "7127") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "附件地址", example = "https://www.iocoder.cn") |
| | | @ExcelProperty("附件地址") |
| | | private String fileUrl; |
| | | |
| | | @Schema(description = "备注", example = "你猜") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | |
| | | @Schema(description = "是否有需要生产的明细(0=否 1=是)", example = "1") |
| | | private Integer needProduction; |
| | | |
| | | // ========== 生产关联 ========== |
| | | |
| | | @Schema(description = "生产状态:0-未完成,1-已完成", example = "1") |
| | | private Integer productionStatus; |
| | | |
| | | @Schema(description = "生产完成时间") |
| | | private LocalDateTime productionFinishTime; |
| | | |
| | | @Data |
| | | public static class Item { |
| | | |