package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
@Data
|
@TableName("zf_clan_manage")
|
public class ZfClanManage {
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer clanId;
|
|
/**
|
* 成员sysUser_id
|
*/
|
private Integer memberId;
|
}
|