liyong
2 天以前 88ae1e650fc2fc30928edfe8f3cc39108d8d1ccd
src/main/java/com/ruoyi/procurementrecord/dto/ProcurementPageDto.java
@@ -3,7 +3,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
@@ -54,7 +54,7 @@
    @Excel(name = "客户名称")
    private String customerName;
    private String salesLedgerProductId;
    private Long salesLedgerProductId;
    /**
     * 出入库数量
@@ -65,14 +65,14 @@
    /**
     * 入库单价
     */
    @ApiModelProperty(value = "入库单价")
    @Schema(description = "入库单价")
    @Excel(name = "入库单价")
    private BigDecimal unitPrice;
    /**
     * 入库总价
     */
    @ApiModelProperty(value = "入库总价")
    @Schema(description = "入库总价")
    @Excel(name = "入库总价")
    private BigDecimal totalPrice;
@@ -120,6 +120,11 @@
     */
    @Excel(name = "产品大类")
    private String productCategory;
     /**
     * 产品id
     */
    @Excel(name = "产品id")
    private Long productId;
    /**
     * 规格型号
@@ -187,4 +192,6 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate endDate;
    private Long productModelId;
}