4 changed files with 0 additions and 365 deletions
@ -1,103 +0,0 @@ |
|||||
package com.qs.serve.modules.sys.entity; |
|
||||
|
|
||||
import java.time.LocalDate; |
|
||||
import java.time.LocalDateTime; |
|
||||
import java.io.Serializable; |
|
||||
|
|
||||
import com.baomidou.mybatisplus.annotation.*; |
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
|
||||
import lombok.Data; |
|
||||
import org.springframework.format.annotation.DateTimeFormat; |
|
||||
|
|
||||
/** |
|
||||
* 用户校区信息 实体类 |
|
||||
* @author YenHex |
|
||||
* @since 2022-05-23 |
|
||||
*/ |
|
||||
@Data |
|
||||
@TableName("sys_user_tenant") |
|
||||
public class SysUserTenant implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 1L; |
|
||||
|
|
||||
/** 用户id */ |
|
||||
@TableId(type = IdType.ASSIGN_UUID) |
|
||||
private String id; |
|
||||
|
|
||||
/** IC卡号 */ |
|
||||
private String icCard; |
|
||||
|
|
||||
/** 入职日期 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
||||
private LocalDate enterDate; |
|
||||
|
|
||||
/** 合同时间开始时间 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
||||
private LocalDate servingPactDate; |
|
||||
|
|
||||
/** 合同时间结束时间 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
||||
private LocalDate servingPactDateEnd; |
|
||||
|
|
||||
/** 转正时间 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
||||
private LocalDate formalDate; |
|
||||
|
|
||||
/** 正式员工【0->试用期;1->正式】 */ |
|
||||
private Integer formalStatus; |
|
||||
|
|
||||
/** 在职状态【0->离职;1->在职】 */ |
|
||||
private Integer servingState; |
|
||||
|
|
||||
/** 校区id */ |
|
||||
@JsonIgnore |
|
||||
@JsonProperty |
|
||||
private String tenantId; |
|
||||
|
|
||||
/** 创建时间 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
|
||||
@TableField(fill = FieldFill.INSERT) |
|
||||
private LocalDateTime createTime; |
|
||||
|
|
||||
/** 创建人 */ |
|
||||
@TableField(fill = FieldFill.INSERT) |
|
||||
private String createBy; |
|
||||
|
|
||||
/** 更新时间 */ |
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
|
||||
@TableField(fill = FieldFill.UPDATE) |
|
||||
private LocalDateTime updateTime; |
|
||||
|
|
||||
/** 更新人 */ |
|
||||
@TableField(fill = FieldFill.UPDATE) |
|
||||
private String updateBy; |
|
||||
|
|
||||
/** 删除标识 */ |
|
||||
@JsonIgnore |
|
||||
@JsonProperty |
|
||||
private Boolean delFlag; |
|
||||
|
|
||||
@TableField(exist = false) |
|
||||
private String tenant; |
|
||||
|
|
||||
/** 部门ID */ |
|
||||
private String deptId; |
|
||||
|
|
||||
/** 人事管理类型 */ |
|
||||
private Integer hrType; |
|
||||
|
|
||||
/** 岗位 */ |
|
||||
private Long positionId; |
|
||||
|
|
||||
/** 职工类型【0->管理员;1->教师;2->职工】 */ |
|
||||
private Integer positionType; |
|
||||
} |
|
||||
|
|
Loading…
Reference in new issue