maven
4 天以前 164d1bace8b1fd0f1be79428b5b15df9c10bec72
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;
@@ -16,10 +17,16 @@
 */
@Data
public class ProcurementPageDto {
    private String ids;
    private Integer id;
    private Long createUser;
    /**
     * true:去掉剩余库存为0
     */
    private Boolean flag;
    /**
     * 入库类型 1-采购 2-生产
@@ -50,6 +57,7 @@
    /**
     * 客户名称
     */
    @Excel(name = "客户名称")
    private String customerName;
    private String salesLedgerProductId;
@@ -60,6 +68,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;