feige
2024-08-22 5e2ebcceae4bc34b46370f2c10110cd72e7f4fba
zhang-content/src/main/java/com/ruoyi/domain/ZfEconomy.java
@@ -34,8 +34,8 @@
    /**
     * 0:基金、1:台账
     */
    @Excel(name = "收支类型",readConverterExp = "0=基金,1=台账")
    private Integer type;
    @Excel(name = "收支类型")
    private String type;
    /**
     * 时间
@@ -64,8 +64,8 @@
    /**
     * 0:现金,1:自动划扣
     */
    @Excel(name = "现金/自动划扣",readConverterExp = "0=现金,1=自动划扣")
    private Integer kind;
    @Excel(name = "现金/自动划扣")
    private String kind;
    /**
     * 余额
@@ -82,7 +82,7 @@
    private String url;
    @Excel(name = "所属家庭编号(导入数据时请删除此栏)")
    private String familyId;
    private Long familyId;
    /**
     * 是否是本家庭的数据(0:不是,1:是)
@@ -105,8 +105,13 @@
    /**
     * 发生时间
     */
    @Excel(name = "发生时间", dateFormat = "yyyy-MM-dd")
    @Excel(name = "时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
    /**
     * 分享人id
     */
    private Integer shareId;
}