| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- package com.xjrsoft.module.student.entity;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import java.util.Date;
- /**
- * @title: 学生基本信息管理
- * @Author 管理员
- * @Date: 2023-08-08
- * @Version 1.0
- */
- @Data
- @TableName("base_student")
- @ApiModel(value = "学生基本信息管理对象", description = "学生基本信息管理")
- public class BaseStudent implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @ApiModelProperty("主键")
- @TableId
- private Long id;
- /**
- * 创建人
- */
- @ApiModelProperty("创建人")
- @TableField(fill = FieldFill.INSERT)
- private Long createUserId;
- /**
- * 创建时间
- */
- @ApiModelProperty("创建时间")
- @TableField(fill = FieldFill.INSERT)
- private LocalDateTime createDate;
- /**
- * 修改人
- */
- @ApiModelProperty("修改人")
- @TableField(fill = FieldFill.UPDATE)
- private Long modifyUserId;
- /**
- * 修改时间
- */
- @ApiModelProperty("修改时间")
- @TableField(fill = FieldFill.UPDATE)
- private LocalDateTime modifyDate;
- /**
- * 删除标记
- */
- @ApiModelProperty("删除标记")
- @TableField(fill = FieldFill.INSERT)
- @TableLogic
- private Integer deleteMark;
- /**
- * 有效标志
- */
- @ApiModelProperty("有效标志")
- @TableField(fill = FieldFill.INSERT)
- private Integer enabledMark;
- /**
- * 用户ID(xjr_user)
- */
- @ApiModelProperty("用户ID(xjr_user)")
- private Long userId;
- /**
- * 学号
- */
- @ApiModelProperty("学号")
- private String studentId;
- /**
- * 别名
- */
- @ApiModelProperty("别名")
- private String asName;
- /**
- * 英文姓名
- */
- @ApiModelProperty("英文姓名")
- private String enName;
- /**
- * 姓名拼音
- */
- @ApiModelProperty("姓名拼音")
- private String pyName;
- /**
- * 曾用名
- */
- @ApiModelProperty("曾用名")
- private String formerName;
- /**
- * 出生日期
- */
- @ApiModelProperty("出生日期")
- @JsonFormat(pattern = "yyyy-MM-dd")
- private LocalDateTime dayOfBirth;
- /**
- * 生日类型(xjr_dictionary_item[date_type])
- */
- @ApiModelProperty("生日类型(xjr_dictionary_item[date_type])")
- private String birthType;
- /**
- * 民族(xjr_dictionary_item[nation])
- */
- @ApiModelProperty("民族(xjr_dictionary_item[nation])")
- private String nation;
- /**
- * 血型(xjr_dictionary_item[blood_type])
- */
- @ApiModelProperty("血型(xjr_dictionary_item[blood_type])")
- private String bloodType;
- /**
- * 健康状况(xjr_dictionary_item[health])
- */
- @ApiModelProperty("健康状况(xjr_dictionary_item[health])")
- private String health;
- /**
- * 婚姻状况(xjr_dictionary_item[marital_state])
- */
- @ApiModelProperty("婚姻状况(xjr_dictionary_item[marital_state])")
- private String maritalState;
- /**
- * 政治面貌(xjr_dictionary_item[political_state])
- */
- @ApiModelProperty("政治面貌(xjr_dictionary_item[political_state])")
- private String politicalState;
- /**
- * 信仰宗教(xjr_dictionary_item[religion])
- */
- @ApiModelProperty("信仰宗教(xjr_dictionary_item[religion])")
- private String religion;
- /**
- * 国籍地区(xjr_dictionary_item[nationality])
- */
- @ApiModelProperty("国籍地区(xjr_dictionary_item[nationality])")
- private String nationality;
- /**
- * 港澳台侨外(xjr_dictionary_item[chinese_type])
- */
- @ApiModelProperty("港澳台侨外(xjr_dictionary_item[chinese_type])")
- private String chineseType;
- /**
- * 户口类别(xjr_dictionary_item[house_hold_type])
- */
- @ApiModelProperty("户口类别(xjr_dictionary_item[house_hold_type])")
- private String houseHoldType;
- /**
- * 籍贯 省(xjr_area)
- */
- @ApiModelProperty("籍贯 省(xjr_area)")
- private Long provinces;
- /**
- * 籍贯 市(xjr_area)
- */
- @ApiModelProperty("籍贯 市(xjr_area)")
- private Long city;
- /**
- * 籍贯 区/县(xjr_area)
- */
- @ApiModelProperty("籍贯 区/县(xjr_area)")
- private Long district;
- /**
- * 户口所在地 省(xjr_area)
- */
- @ApiModelProperty("户口所在地 省(xjr_area)")
- private Long houseProvinces;
- /**
- * 户口所在地 市(xjr_area)
- */
- @ApiModelProperty("户口所在地 市(xjr_area)")
- private Long houseCity;
- /**
- * 户口所在地 区/县(xjr_area)
- */
- @ApiModelProperty("户口所在地 区/县(xjr_area)")
- private Long houseDistrict;
- /**
- * 户籍地址
- */
- @ApiModelProperty("户籍地址")
- private String houseHoldAddress;
- /**
- * 所属派出所
- */
- @ApiModelProperty("所属派出所")
- private String belongsPolice;
- /**
- * 出生地 省(xjr_area)
- */
- @ApiModelProperty("出生地 省(xjr_area)")
- private Long birthProvinces;
- /**
- * 出生地 市(xjr_area)
- */
- @ApiModelProperty("出生地 市(xjr_area)")
- private Long birthCity;
- /**
- * 出生地 区/县(xjr_area)
- */
- @ApiModelProperty("出生地 区/县(xjr_area)")
- private Long birthDistrict;
- /**
- * 生源地(base_graduate_school)
- */
- @ApiModelProperty("生源地(base_graduate_school)")
- private Long graduateSchoolId;
- /**
- * 学生居住地类型(xjr_dictionary_item[residence_type])
- */
- @ApiModelProperty("学生居住地类型(xjr_dictionary_item[residence_type])")
- private String residenceType;
- /**
- * 是否随迁子女
- */
- @ApiModelProperty("是否随迁子女")
- private Integer isMigrateChildren;
- /**
- * 乘火车区间
- */
- @ApiModelProperty("乘火车区间")
- private String trainInterval;
- /**
- * 是否流动人口
- */
- @ApiModelProperty("是否流动人口")
- private Integer isFloatingPopulation;
- /**
- * 身高(cm)
- */
- @ApiModelProperty("身高(cm)")
- private Double height;
- /**
- * 体重(kg)
- */
- @ApiModelProperty("体重(kg)")
- private Double weight;
- /**
- * 视力
- */
- @ApiModelProperty("视力")
- private Double vision;
- /**
- * 特长
- */
- @ApiModelProperty("特长")
- private String specialty;
- }
|