| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.sales.vo; |
| | | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ShippingNoteVo { |
| | | @Excel(name = "客æ·åç§°", cellType = Excel.ColumnType.STRING) |
| | | private String customerName; |
| | | |
| | | @Excel(name = "éè´§å°å", cellType = Excel.ColumnType.STRING) |
| | | private String companyAddress; |
| | | |
| | | @Excel(name = "è系人", cellType = Excel.ColumnType.STRING) |
| | | private String contactPerson; |
| | | |
| | | @Excel(name = "èç³»çµè¯", cellType = Excel.ColumnType.STRING) |
| | | private String contactPhone; |
| | | |
| | | @Excel(name = "å
¬å¸çµè¯", cellType = Excel.ColumnType.STRING) |
| | | private String companyPhone; |
| | | |
| | | @Excel(name = "åæ®ç¼å·", cellType = Excel.ColumnType.STRING) |
| | | private String salesContractNo; |
| | | |
| | | @Excel(name = "éè´§æ¥æ", cellType = Excel.ColumnType.STRING) |
| | | private String deliveryDate; |
| | | |
| | | @Excel(name = "产åä¿¡æ¯", type = Excel.Type.EXPORT) |
| | | private List<SalesLedgerProductVo> products; |
| | | |
| | | @Excel(name = "å计æ°é", cellType = Excel.ColumnType.NUMERIC) |
| | | private BigDecimal totalQuantity; |
| | | |
| | | @Data |
| | | public static class SalesLedgerProductVo { |
| | | @Excel(name = "åºå·", cellType = Excel.ColumnType.NUMERIC) |
| | | private Integer serialNumber; |
| | | |
| | | @Excel(name = "ç©æç¼å·", cellType = Excel.ColumnType.STRING) |
| | | private String materialCode; |
| | | |
| | | @Excel(name = "产åç±»å«", cellType = Excel.ColumnType.STRING) |
| | | private String productCategory; |
| | | |
| | | @Excel(name = "è§æ ¼åå·", cellType = Excel.ColumnType.STRING) |
| | | private String specificationModel; |
| | | |
| | | @Excel(name = "åä½", cellType = Excel.ColumnType.STRING) |
| | | private String unit; |
| | | |
| | | @Excel(name = "æ°é", cellType = Excel.ColumnType.NUMERIC) |
| | | private BigDecimal quantity; |
| | | |
| | | @Excel(name = "订åå·", cellType = Excel.ColumnType.STRING) |
| | | private String orderNo; |
| | | } |
| | | } |