| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("sd.`order`") |
| | |
| | | private String icon; |
| | | @ExcelProperty("包装方式") |
| | | private String packType; |
| | | @ExcelProperty("发货名称") |
| | | @ExcelProperty("发货时间") |
| | | private LocalDate deliveryDate; |
| | | @ExcelProperty("批次") |
| | | private String batch; |
| | |
| | | private String salesman; |
| | | @ExcelProperty("铝条方式") |
| | | private String alType; |
| | | @ExcelProperty("金额") |
| | | @ExcelProperty("订单金额") |
| | | private Double money; |
| | | @ExcelProperty("合同编号") |
| | | private String contractId; |
| | |
| | | @ExcelProperty("打印次数") |
| | | private Integer printingNumber; |
| | | @ExcelProperty("创建日期") |
| | | @TableField(update = "false") |
| | | private LocalDate createTime; |
| | | @ExcelProperty("修改日期") |
| | | private LocalDate updateTime; |
| | | @ExcelProperty("修改版本号") |
| | | private Integer version; |
| | | @TableField(select = false,exist = false) |
| | | private Integer goodsQuantity; |
| | | @TableField(select = false,exist = false) |
| | | private String timeOut; |
| | | @TableField(select = false,exist = false) |
| | | private List<String> excludeOrderIds; |
| | | |
| | | @TableField(value = "customer_id") |
| | | private Customer customer; |