| | |
| | | package com.ruoyi.purchase.dto; |
| | | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.dto.SalesLedgerProductImportDto; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | private String purchaseContractNumber; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | @Excel(name = "库存预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | @Excel(name = "销售单号") |
| | | private String salesContractNo; |
| | | |
| | | |
| | | /** |
| | | * 产品大类 |
| | | */ |
| | | @Excel(name = "产品大类") |
| | |
| | | private String specificationModel; |
| | | |
| | | /** |
| | | * UID码 |
| | | */ |
| | | @Excel(name = "UID码") |
| | | private String uidNo; |
| | | |
| | | /** |
| | | * 批次号 |
| | | */ |
| | | @Excel(name = "批次号") |
| | | private String batchNo; |
| | | |
| | | /** |
| | | * 单位 |
| | | */ |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | @Excel(name = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | /** |
| | | * 税率 |
| | |
| | | private BigDecimal taxInclusiveUnitPrice; |
| | | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | @Excel(name = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | /** |
| | | * 含税总价 |
| | | */ |
| | | @Excel(name = "含税总价") |
| | |
| | | private String invoiceType; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | @Excel(name = "库存预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | /** |
| | | * 是否质检 |
| | | */ |
| | | @Excel(name = "是否质检", readConverterExp = "0=否,1=是") |