zqy
2024-11-19 f8b80fc0032e15e67e7a9ca4fe644e7147f90c70
zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java
@@ -3,31 +3,19 @@
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;
}