huminmin
6 天以前 341341d5e02d1845ffce081b591779a578513262
src/main/java/com/ruoyi/procurementrecord/dto/ProcurementRecordOutPageDto.java
@@ -14,7 +14,28 @@
@Data
public class ProcurementRecordOutPageDto {
    @Excel(name = "出库编号")
    private String code;
    private Integer id;
    private BigDecimal warnNum;
    /**
     * 销售合同号
     */
    private String salesContractNo;
    /**
     * 客户合同号
     */
    private String customerContractNo;
    /**
     * 客户名称
     */
    @Excel(name = "客户名称")
    private String customerName;
    /**
     * 出入库数量
@@ -25,9 +46,14 @@
    /**
     * 出入库时间
     */
//    @Excel(name = "出库时间")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private LocalDateTime createTime;
    private String timeStr;
    @Excel(name = "出库时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime createDate;
    private String time;
    /**
     * 出入库用户
@@ -40,6 +66,8 @@
     */
    @Excel(name = "供应商名称")
    private String supplierName;
    /**
@@ -84,4 +112,8 @@
    @Excel(name = "不含税总价")
    private BigDecimal taxExclusiveTotalPrice;
    /**
     * 物品类型
     */
    private String itemType;
}