|
|
@ -20,7 +20,7 @@ import lombok.experimental.Accessors; |
|
|
|
/** |
|
|
|
* @Description: 报名材料提交表 |
|
|
|
* @Author: jeecg-boot |
|
|
|
* @Date: 2024-12-21 |
|
|
|
* @Date: 2025-09-02 |
|
|
|
* @Version: V1.0 |
|
|
|
*/ |
|
|
|
@Data |
|
|
@ -119,14 +119,74 @@ public class EmployRedister implements Serializable { |
|
|
|
@Excel(name = "工作单位", width = 15) |
|
|
|
@ApiModelProperty(value = "工作单位") |
|
|
|
private java.lang.String companyName; |
|
|
|
/**关联证书id*/ |
|
|
|
@Excel(name = "关联证书id", width = 15, dictTable = "employ_cert", dicText = "name", dicCode = "id") |
|
|
|
@Dict(dictTable = "employ_cert", dicText = "name", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "关联证书id") |
|
|
|
private java.lang.String cerId; |
|
|
|
/**姓名*/ |
|
|
|
@Excel(name = "姓名", width = 15) |
|
|
|
@ApiModelProperty(value = "姓名") |
|
|
|
private java.lang.String textColumn1; |
|
|
|
/**居民身份证号*/ |
|
|
|
@Excel(name = "居民身份证号", width = 15) |
|
|
|
@ApiModelProperty(value = "居民身份证号") |
|
|
|
private java.lang.String textColumn2; |
|
|
|
/**出生日期*/ |
|
|
|
@Excel(name = "出生日期", width = 15) |
|
|
|
@ApiModelProperty(value = "出生日期") |
|
|
|
private java.lang.String textColumn3; |
|
|
|
/**性别*/ |
|
|
|
@Excel(name = "性别", width = 15) |
|
|
|
@ApiModelProperty(value = "性别") |
|
|
|
private java.lang.String textColumn4; |
|
|
|
/**考生来源*/ |
|
|
|
@Excel(name = "考生来源", width = 15) |
|
|
|
@ApiModelProperty(value = "考生来源") |
|
|
|
private java.lang.String textColumn5; |
|
|
|
/**身份证上的所在地*/ |
|
|
|
@Excel(name = "身份证上的所在地", width = 15) |
|
|
|
@ApiModelProperty(value = "身份证上的所在地") |
|
|
|
private java.lang.String textColumn6; |
|
|
|
/**从事职业*/ |
|
|
|
@Excel(name = "从事职业", width = 15) |
|
|
|
@ApiModelProperty(value = "从事职业") |
|
|
|
private java.lang.String textColumn7; |
|
|
|
/**报考工种*/ |
|
|
|
@Excel(name = "报考工种", width = 15) |
|
|
|
@ApiModelProperty(value = "报考工种") |
|
|
|
private java.lang.String textColumn8; |
|
|
|
/**工作单位/个体名称*/ |
|
|
|
@Excel(name = "工作单位/个体名称", width = 15) |
|
|
|
@ApiModelProperty(value = "工作单位/个体名称") |
|
|
|
private java.lang.String textColumn9; |
|
|
|
/**文化程度*/ |
|
|
|
@Excel(name = "文化程度", width = 15) |
|
|
|
@ApiModelProperty(value = "文化程度") |
|
|
|
private java.lang.String textColumn10; |
|
|
|
/**参加工作日期*/ |
|
|
|
@Excel(name = "参加工作日期", width = 15) |
|
|
|
@ApiModelProperty(value = "参加工作日期") |
|
|
|
private java.lang.String textColumn11; |
|
|
|
/**操作证-正面照*/ |
|
|
|
@Excel(name = "操作证-正面照", width = 15) |
|
|
|
@ApiModelProperty(value = "操作证-正面照") |
|
|
|
private java.lang.String imageColumn1; |
|
|
|
/**操作证-反面照*/ |
|
|
|
@Excel(name = "操作证-反面照", width = 15) |
|
|
|
@ApiModelProperty(value = "操作证-反面照") |
|
|
|
private java.lang.String imageColumn2; |
|
|
|
/**安管申请表*/ |
|
|
|
@Excel(name = "安管申请表", width = 15) |
|
|
|
@ApiModelProperty(value = "安管申请表") |
|
|
|
private java.lang.String imageColumn3; |
|
|
|
/**特种设备体检表*/ |
|
|
|
@Excel(name = "特种设备体检表", width = 15) |
|
|
|
@ApiModelProperty(value = "特种设备体检表") |
|
|
|
private java.lang.String imageColumn4; |
|
|
|
/**关联用户id*/ |
|
|
|
@Excel(name = "关联用户id", width = 15, dictTable = "han_hai_member", dicText = "nick_name", dicCode = "id") |
|
|
|
@Dict(dictTable = "han_hai_member", dicText = "nick_name", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "关联用户id") |
|
|
|
private java.lang.String userId; |
|
|
|
/**关联证书id*/ |
|
|
|
@Excel(name = "关联证书id", width = 15, dictTable = "employ_cert", dicText = "name", dicCode = "id") |
|
|
|
@Dict(dictTable = "employ_cert", dicText = "name", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "关联证书id") |
|
|
|
private java.lang.String cerId; |
|
|
|
} |