maven
昨天 99cc2c135bb97943ef25f31d4d85c24b683b725b
src/main/java/com/ruoyi/procurementrecord/dto/ProcurementRecordOutPageDto.java
@@ -6,6 +6,7 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
/**
 * @author :yys
@@ -20,6 +21,10 @@
    private Integer id;
    private BigDecimal warnNum;
    /**
     * 采购合同号
     */
    private String purchaseContractNumber;
    /**
     * 销售合同号
     */
@@ -44,10 +49,22 @@
    private BigDecimal inboundNum;
    /**
     * 单价
     */
    @Excel(name = "单价")
    private BigDecimal unitPrice;
    /**
     * 总价
     */
    @Excel(name = "总价")
    private BigDecimal totalPrice;
    /**
     * 出入库时间
     */
//    @Excel(name = "出库时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private LocalDateTime createTime;
    private String timeStr;
@@ -112,4 +129,8 @@
    @Excel(name = "不含税总价")
    private BigDecimal taxExclusiveTotalPrice;
    /**
     * 物品类型
     */
    private String itemType;
}