feige
2024-08-22 5e2ebcceae4bc34b46370f2c10110cd72e7f4fba
zhang-content/src/main/java/com/ruoyi/domain/ZfEquipment.java
@@ -1,6 +1,7 @@
package com.ruoyi.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -35,11 +36,16 @@
    private String name;
    /**
     * 记录时间
     * 保修期限
     */
    @Excel(name = "保修期限")
    private String baoXiu;
    /**
     * 插入时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd")
    private Date createDate;
    private Date createTime;
    /**
     * 购买人
@@ -68,10 +74,44 @@
    /**
     * 家庭id
     */
    @Excel(name = "家庭id")
    private String familyId;
    @Excel(name = "所属家庭编号(导入数据时请删除此栏)")
    private Long familyId;
    private String url;
    @Excel(name = "是否注销",readConverterExp = "0=正常,1=已注销")
    private Integer status;
    /**
     * 是否是本家庭的数据(0:不是,1:是)
     */
    @TableField(exist = false)
    private Integer ownData = 0;
    /**
     * 开始时间
     */
    @TableField(exist = false)
    private Date happenStartTime;
    /**
     * 结束时间
     */
    @TableField(exist = false)
    private Date happenEndTime;
    /**
     * 记录时间
     */
    @Excel(name = "时间", dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    private Date happenTime;
    /**
     * 分享人id
     */
    private Integer shareId;
}