package com.ruoyi.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName("zf_ancestor") public class ZfAncestor { @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 家族id */ private Integer clanId; /** * 祖先名称 */ private String name; /** * 祖先sysId */ private Long sysId; /** * 祖先性别 */ private Integer sex; /** * 祖先类型 */ private Integer roleId; /** * 状态 */ private Integer status; /** * 是否本家 */ private Integer isMyFamily; /** *配偶id */ private Integer spouseId; }