2026-04-23 41ab7abd0b0ec0fefb03b60bbaf42c02fbda666b
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;
@@ -65,14 +65,14 @@
    /**
     * 入库单价
     */
    @ApiModelProperty(value = "入库单价")
    @Schema(description = "入库单价")
    @Excel(name = "入库单价")
    private BigDecimal unitPrice;
    /**
     * 入库总价
     */
    @ApiModelProperty(value = "入库总价")
    @Schema(description = "入库总价")
    @Excel(name = "入库总价")
    private BigDecimal totalPrice;
@@ -192,4 +192,6 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate endDate;
    private Long productModelId;
}