|  |  | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
 |  |  | import com.doumee.core.model.LoginUserModel; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
 |  |  | 
 |  |  | @Data | 
 |  |  | @ApiModel("人员培训有效期记录") | 
 |  |  | @TableName("`train_time`") | 
 |  |  | public class TrainTime { | 
 |  |  | public class TrainTime  extends LoginUserModel { | 
 |  |  |  | 
 |  |  |     @TableId(type = IdType.AUTO) | 
 |  |  |     @ApiModelProperty(value = "主键", example = "1") | 
 |  |  |     private Integer id; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "创建人编码") | 
 |  |  |     private String creator; | 
 |  |  |     private Integer creator; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "更新人编码") | 
 |  |  |     private String edirot; | 
 |  |  |     private Integer edirot; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "更新时间") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     @ExcelColumn(name="身份证", index = 3) | 
 |  |  |     private String idcardNo; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "人脸照片") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String faceImg; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "组织名称") | 
 |  |  |     @TableField(exist = false) | 
 |  |  | 
 |  |  |     private String createName; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "培训时间至", example = "1") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @ExcelColumn(name="培训时间至", index = 6 ,dateFormat="yyyy-MM-dd") | 
 |  |  |     private Date endTime; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "创建时间") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @ExcelColumn(name="操作时间", index = 7 ,dateFormat="yyyy-MM-dd") | 
 |  |  |     private Date createDate; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "关键字,姓名/手机号") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String keyWords; | 
 |  |  |  | 
 |  |  | } |