feige
2024-06-16 3ad8fb4e7cc1391e8090f3da6ffa9c48690a12a3
zhang-content/src/main/java/com/ruoyi/domain/ZInfoUser.java
@@ -21,7 +21,6 @@
 */
@TableName("z_info_user")
@Data
@ToString
public class ZInfoUser implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -131,10 +130,44 @@
    @Excel(name = "外籍、境外相关证件号码")
    private String idNo;
    /**
     * 全生命周期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "全生命周期", dateFormat = "yyyy-MM-dd")
    private Date deadDay;
    @Excel(name = "星座")
    private String constellation;
    @Excel(name = "微信号")
    private String wxNo;
    @Excel(name = "qq号")
    private String qqNo;
    @Excel(name = "生肖")
    private String shengXiao;
    @Excel(name = "是否是本家庭成员",readConverterExp = "0=否,1=是")
    private Integer isMyFamily;
    @TableField(exist = false)
    private String familyName;
    @TableField(exist = false)
    private String roleName;
    /**
     * 图片地址
     */
    private String img;
    /**
     * 配偶id
     */
    private Long spouseId;
    /**
     * 父亲的id
@@ -154,6 +187,17 @@
    private Date birth;
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
    /**
     * 邮箱
     */
    private String email;
    /**
     * 个人背景图片、视频
     */
    private String url;
@@ -161,18 +205,39 @@
    /**
     * 家庭id
     */
    private String familyId;
    private Long familyId;
    /**
     * 角色id
     */
    private Long roleId;
    /**
     * 其他家庭授权id
     */
    private String secondFamilyId;
    private Long sysId;
    /**
     * 代数
     */
    @TableField(exist = false)
    private Integer identity;
    /**
     * 配偶信息
     */
    @TableField(exist = false)
    private ZInfoUser spouse;
    /**
     * 子列表
     */
    @TableField(exist = false)
    List<ZInfoUser> childList;
    private List<ZInfoUser> childList;
}