| | |
| | | |
| | | @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724") |
| | | private Long customerId; |
| | | @Schema(description = "客户名称", example = "芋道") |
| | | @Schema(description = "客户名称", example = "超级管理员") |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | |
| | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "创建人", example = "芋道") |
| | | @Schema(description = "创建人", example = "超级管理员") |
| | | private String creator; |
| | | @Schema(description = "创建人名称", example = "芋道") |
| | | @Schema(description = "创建人名称", example = "超级管理员") |
| | | private String creatorName; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | |
| | | @Schema(description = "出库状态", example = "0") |
| | | private Integer outStatus; |
| | | |
| | | // ========== 发货通知 ========== |
| | | |
| | | @Schema(description = "是否已生成发货通知单", example = "false") |
| | | private Boolean hasSalesNotice; |
| | | |
| | | @Schema(description = "是否可以生成发货通知单(有需要生产且未完成的明细时为 false)", example = "true") |
| | | private Boolean canCreateSalesNotice; |
| | | // ========== 生产关联 ========== |
| | | |
| | | @Schema(description = "是否有需要生产的明细(0=否 1=是)", example = "1") |
| | | private Integer needProduction; |
| | | |
| | | // ========== 生产关联 ========== |
| | | |
| | | @Schema(description = "生产状态:0-未完成,1-已完成", example = "1") |
| | | private Integer productionStatus; |
| | |
| | | |
| | | @Schema(description = "关联的 MPS 编号", example = "1024") |
| | | private Long mpsId; |
| | | |
| | | // ========== 出库批号 ========== |
| | | |
| | | @Schema(description = "出库批号", example = "B2026001、B2026002") |
| | | private String batchCode; |
| | | |
| | | // ========== 关联字段 ========== |
| | | |