zqy
2025-09-09 f610e1425f1e5ff2cb88b17312b24121fd2fa6a5
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;
}