New file |
| | |
| | | package com.example.erp.dto.sd; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | |
| | | @Data |
| | | public class CustomerDTO { |
| | | @ExcelProperty("客户名称") |
| | | private String customerName; |
| | | @ExcelProperty("报表日期") |
| | | private LocalDate createTime; |
| | | @ExcelProperty("发货单号") |
| | | private String deliveryId; |
| | | @ExcelProperty("销售单号") |
| | | private String orderId; |
| | | @ExcelProperty("项目名称") |
| | | private String project; |
| | | @ExcelProperty("产品") |
| | | private String productName; |
| | | @ExcelProperty("数量") |
| | | private Double quantity; |
| | | @ExcelProperty("面积") |
| | | private Double area; |
| | | @ExcelProperty("单价") |
| | | private Double price; |
| | | @ExcelProperty("金额") |
| | | private Double money; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |