feige
2024-10-07 f57c5b200b97a01738ace0cfa06e991ee4c01460
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.domain;
 
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 = "clan_id", type = IdType.AUTO)
    private Integer clanId;
 
    /**
     * 家族名称
     */
    @Excel(name = "名字")
    private String clanName;
 
}