| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | */ |
| | | @TableField("create_time") |
| | | private LocalDateTime createTime; |
| | | /** |
| | | * 证件类型文本 |
| | | */ |
| | | @TableField(value = "certificate_type_text",exist = false) |
| | | @ApiModelProperty(value = "证件类型文本") |
| | | private String certificateTypeText; |
| | | |
| | | |
| | | /** |
| | | * 文化程度文本 |
| | | */ |
| | | @TableField(value = "education_degree_text",exist = false) |
| | | @ApiModelProperty(value = "文化程度文本") |
| | | private String educationDegreeText; |
| | | /** |
| | | * 民族文本 |
| | | */ |
| | | @ApiModelProperty(value = "民族文本") |
| | | @TableField(value = "nation_text",exist = false) |
| | | private String nationText; |
| | | } |