maven
6 天以前 b1b59aac99c3d465d51e5fb4f7ab8185ddb733d2
src/main/java/com/ruoyi/procurementrecord/dto/ProcurementRecordOutPageDto.java
@@ -19,6 +19,24 @@
    private Integer id;
    private BigDecimal warnNum;
    /**
     * 销售合同号
     */
    private String salesContractNo;
    /**
     * 客户合同号
     */
    private String customerContractNo;
    /**
     * 客户名称
     */
    @Excel(name = "客户名称")
    private String customerName;
    /**
     * 出入库数量
     */
@@ -26,11 +44,25 @@
    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;
    @Excel(name = "出库时间")
    private String time;
@@ -46,6 +78,8 @@
     */
    @Excel(name = "供应商名称")
    private String supplierName;
    /**
@@ -90,4 +124,8 @@
    @Excel(name = "不含税总价")
    private BigDecimal taxExclusiveTotalPrice;
    /**
     * 物品类型
     */
    private String itemType;
}