| | |
| | | @ExcelProperty("通知单名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "销售订单编号", example = "SO202603010001") |
| | | @ExcelProperty("销售订单编号") |
| | | private String salesOrderCode; |
| | | |
| | | @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long clientId; |
| | | |
| | | @Schema(description = "客户编码", example = "C001") |
| | | @ExcelProperty("客户编码") |
| | | private String clientCode; |
| | | |
| | | @Schema(description = "客户名称", example = "某客户") |
| | | @ExcelProperty("客户名称") |
| | | private String clientName; |
| | | |
| | | @Schema(description = "销售订单ID", example = "1") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "销售订单号", example = "SO202603010001") |
| | | @ExcelProperty("销售订单号") |
| | | private String saleOrderCode; |
| | | |
| | | @Schema(description = "发货日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("发货日期") |
| | |
| | | @ExcelProperty("状态") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "出库状态", example = "0") |
| | | @ExcelProperty("出库状态") |
| | | private Integer outStatus; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | } |
| | | } |