888
Jinquan_Ou
2023-04-17 8e3f58c38fd3d552125ada6afdf88e7fc2b380a0
zhang-content/src/main/java/com/ruoyi/domain/ZfProperty.java
@@ -6,6 +6,8 @@
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
@@ -51,10 +53,29 @@
    @Excel(name="备注")
    private String remark;
    @JsonFormat(shape=JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name="创建时间")
    private LocalDateTime createTime;
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "创建时间", dateFormat = "yyyy-MM-dd")
    private Date createTime;
    private String url;
    /**
     * 家庭id
     */
    @Excel(name = "所属家庭编号")
    private String familyId;
    /**
     * 是否是本家庭的数据(0:不是,1:是)
     */
    @TableField(exist = false)
    private Integer ownData = 0;
    @Excel(name = "是否注销",readConverterExp = "0=正常,1=已注销")
    private Integer status;
}