zqy
5 天以前 b02beccf4567068cb47a3f1181a00039456c872d
zhang-content/src/main/java/com/ruoyi/domain/ZfClan.java
@@ -3,17 +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 clan {
    @TableId(value = "id", type = IdType.AUTO)
public class ZfClan {
    @TableId(value = "clan_id", type = IdType.AUTO)
    private Integer clanId;
    /**
     * 家族名称
     */
    @Excel(name = "名字")
    private String clanName;
    private Integer dadId;
    private Integer momId;
}
}