| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("sd.`order`") |
| | |
| | | private String salesman; |
| | | @ExcelProperty("铝条方式") |
| | | private String alType; |
| | | @ExcelProperty("金额") |
| | | @ExcelProperty("订单金额") |
| | | private Double money; |
| | | @ExcelProperty("合同编号") |
| | | private String contractId; |
| | |
| | | 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; |