| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @TableName("zf_clan") |
| | | public class ZfClan { |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | @TableId(value = "clan_id", type = IdType.AUTO) |
| | | private Integer clanId; |
| | | |
| | | /** |
| | | * 家族名称 |
| | | */ |
| | | @Excel(name = "名字") |
| | | private String clanName; |
| | | |
| | | /** |
| | | * 父亲id |
| | | */ |
| | | private Integer dadId; |
| | | |
| | | /** |
| | | * 母亲id |
| | | */ |
| | | private Integer momId; |
| | | |
| | | /** |
| | | * 管理员id |
| | | */ |
| | | private Integer adminId; |
| | | } |
| | | } |