58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
package com.sercurityControl.decision.domain;
|
|
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 人员信息履历表(JjPerson)实体类
|
|
*
|
|
* @author makejava
|
|
* @since 2022-12-06 14:31:53
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class JjPerson extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = -97399815105658378L;
|
|
/**
|
|
* 主键
|
|
*/
|
|
private String id;
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
private String age;
|
|
/**
|
|
* 身份证号
|
|
*/
|
|
private String bakIc;
|
|
/**
|
|
* 人员类型
|
|
*/
|
|
private String peopleType;
|
|
/**
|
|
* 所属单项工程
|
|
*/
|
|
private String singleNo;
|
|
/**
|
|
* 所属标段工程
|
|
*/
|
|
private String bidNo;
|
|
/**
|
|
* 联系方式
|
|
*/
|
|
private String phone;
|
|
/**
|
|
* 班组名称
|
|
*/
|
|
private String teamName;
|
|
/**
|
|
* 人员类型名称
|
|
*/
|
|
private String peopleTypeName;
|
|
|
|
}
|
|
|