|
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_ancestor")
|
public class ZfAncestor {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
|
/**
|
* 家族id
|
*/
|
|
private Integer clanId;
|
|
|
/**
|
* 祖先名称
|
*/
|
@Excel(name="祖先名称")
|
private String name;
|
|
/**
|
* 祖先sysId
|
*/
|
private Long sysId;
|
|
/**
|
* 祖先性别
|
*/
|
@Excel(name="祖先性别",readConverterExp = "0=女,1=男")
|
private Integer sex;
|
|
/**
|
* 祖先类型
|
*/
|
|
private Integer roleId;
|
|
/**
|
* 状态
|
*/
|
@Excel(name="状态",readConverterExp = "0=在用,1=禁用")
|
private Integer status;
|
|
// /**
|
// * 是否本家
|
// */
|
// private Integer isMyFamily;
|
//
|
/**
|
*配偶id
|
*/
|
private Integer spouseId;
|
|
/**
|
*密码
|
*/
|
private String password;
|
|
}
|