maven
2 天以前 99cc2c135bb97943ef25f31d4d85c24b683b725b
src/main/java/com/ruoyi/procurementrecord/dto/ProcurementPageDto.java
@@ -3,6 +3,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
@@ -20,6 +21,11 @@
    private Integer id;
    private Long createUser;
    /**
     * true:去掉剩余库存为0
     */
    private Boolean flag;
    /**
     * 入库类型 1-采购 2-生产
@@ -50,6 +56,7 @@
    /**
     * 客户名称
     */
    @Excel(name = "客户名称")
    private String customerName;
    private String salesLedgerProductId;
@@ -60,6 +67,20 @@
    @Excel(name = "入库数量")
    private BigDecimal inboundNum;
    /**
     * 入库单价
     */
    @ApiModelProperty(value = "入库单价")
    @Excel(name = "入库单价")
    private BigDecimal unitPrice;
    /**
     * 入库总价
     */
    @ApiModelProperty(value = "入库总价")
    @Excel(name = "入库总价")
    private BigDecimal totalPrice;
    @Excel(name = "预警数量")
    private BigDecimal warnNum;