| | |
| | | package com.ruoyi.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Version 1.0 |
| | |
| | | private String position; |
| | | |
| | | /** |
| | | * 拥有外籍、境外永久居留权或者长期居留许可的情况,1:有、0:没有 |
| | | */ |
| | | @Excel(name="拥有外籍、境外永久居留权或者长期居留许可的情况",readConverterExp = "0=没有,1=有") |
| | | private Integer outStatus; |
| | | |
| | | /** |
| | | * 外籍、境外相关证件号码 |
| | | */ |
| | | @Excel(name = "外籍、境外相关证件号码") |
| | | private String idNo; |
| | | |
| | | /** |
| | | * 图片地址 |
| | | */ |
| | | private String img; |
| | |
| | | /** |
| | | * 父亲的id |
| | | */ |
| | | private Integer fatherId; |
| | | private Long fatherId; |
| | | |
| | | /** |
| | | * 母亲的id |
| | | */ |
| | | private Integer momId; |
| | | private Long momId; |
| | | |
| | | /** |
| | | * 出生年月日 |
| | |
| | | */ |
| | | private String url; |
| | | |
| | | /** |
| | | * 家庭id |
| | | */ |
| | | private String familyId; |
| | | |
| | | /** |
| | | * 其他家庭授权id |
| | | */ |
| | | private String secondFamilyId; |
| | | |
| | | /** |
| | | * 子列表 |
| | | */ |
| | | @TableField(exist = false) |
| | | List<ZInfoUser> childList; |
| | | |
| | | |
| | | } |