人员标识调整

This commit is contained in:
Harryxzy 2022-12-27 15:00:42 +08:00
parent 7c6d30421d
commit 68feb15660
1 changed files with 71 additions and 0 deletions

View File

@ -0,0 +1,71 @@
package com.engine.bjcj220907.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* @author Harryxzy
* @date 2022/11/01 14:18
* @description 人员标识
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Rybs {
// 主键ID
private Integer id;
// 姓名
private Integer xm;
//离职日期
private Date lzrq;
// 是否已经核算绩效
private Integer sfyjhsjx;
// 人员状态
private Integer ryzt;
// 绩效核算年月
private String jxhsny;
// 开始常驻日期
private Date ksczrq;
// 结束常驻日期
private Date jsczrq;
// 入职日期
private Date rzrq;
// 转正日期
private Date zzrq;
// 调动日期
private Date ddrq;
// 调动
private Integer dd;
// 离职
private Integer lz;
// 上下发薪
private Integer sxfx;
// 境内境外
private Integer jnjw;
// 转正
private Integer zz;
// 入职
private Integer rz;
}