src/main/java/com/ruoyi/purchase/dto/PurchaseLedgerProductImportDto.java
@@ -1,7 +1,6 @@
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;
@@ -17,16 +16,6 @@
    private String purchaseContractNumber;
    /**
     * 预警数量
     */
    @Excel(name = "库存预警数量")
    private BigDecimal warnNum;
    @Excel(name = "销售单号")
    private String salesContractNo;
    /**
     * 产品大类
     */
    @Excel(name = "产品大类")
@@ -39,16 +28,22 @@
    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;
    /**
     * 税率
@@ -63,6 +58,12 @@
    private BigDecimal taxInclusiveUnitPrice;
    /**
     * 数量
     */
    @Excel(name = "数量")
    private BigDecimal quantity;
    /**
     * 含税总价
     */
    @Excel(name = "含税总价")
@@ -75,6 +76,12 @@
    private String invoiceType;
    /**
     * 预警数量
     */
    @Excel(name = "库存预警数量")
    private BigDecimal warnNum;
    /**
     * 是否质检
     */
    @Excel(name = "是否质检", readConverterExp = "0=否,1=是")