maven
6 天以前 e179ca5166d6296c9bbc79067669919212e72123
src/main/java/com/ruoyi/procurementrecord/pojo/CustomStorage.java
@@ -26,8 +26,11 @@
    // 入库时间
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "入库时间")
    @Excel(name = "入库时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date inboundDate;
    @TableField(exist = false)
    private String timeStr;
    /**
     * 待出库数量
@@ -83,21 +86,21 @@
     * 入库用户id
     */
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
    private Integer createUser;
    /**
     * 入库时间
     */
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDateTime createTime;
    /**
     * 修改者
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
    private Integer updateUser;
    /**
     * 修改时间