IntelligentRecognition/ah-jjsp-service/.svn/pristine/f3/f34aaf9db78b53499dc7e9971f8...

81 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
package com.sercurityControl.proteam.dutyTask.domain;
import lombok.Data;
/**
* 骨干成绩
*/
@Data
public class BackboneScoreEntity {
/**
*id
*/
private String id;
/**
*人员编码
*/
private String userCode;
/**
*姓名
*/
private String userName;
/**
*身份证号
*/
private String idNumber;
/**
*所属单位
*/
private String unit;
/**
*所属部门
*/
private String part;
/**
*试卷成绩
*/
private String score;
/**
*合格
*/
private String qualified;
/**
*考试时间
*/
private String testTime;
/**
*有效期
*/
private String effectiveTime;
/**
*工种
*/
private String workType;
/**
*人员类型
*/
private String peopleType;
/**
*人员状态
*/
private String peopleStatus;
/**
*创建时间
*/
private String createTime;
/**
*修改时间
*/
private String updateTime;
private String page;
private String limit;
private boolean flag = true;
private int type;
}