bug fix
parent
46259ac287
commit
09b6362eff
|
|
@ -36,6 +36,9 @@ public class OrgPersonnelCO {
|
||||||
@ApiModelProperty(value = "出生日期")
|
@ApiModelProperty(value = "出生日期")
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "参加工作日期")
|
||||||
|
private LocalDate joinWorkDate;
|
||||||
|
|
||||||
@ApiModelProperty(value = "身份证号")
|
@ApiModelProperty(value = "身份证号")
|
||||||
private String idCardNo;
|
private String idCardNo;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,9 @@ public class OrgPersonnelAddCmd {
|
||||||
@ApiModelProperty(value = "出生日期")
|
@ApiModelProperty(value = "出生日期")
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "参加工作日期")
|
||||||
|
private LocalDate joinWorkDate;
|
||||||
|
|
||||||
@Pattern(regexp = "^\\d{17}[\\dXx]$", message = "身份证号格式不正确")
|
@Pattern(regexp = "^\\d{17}[\\dXx]$", message = "身份证号格式不正确")
|
||||||
@Size(max = 18, message = "身份证号长度不能超过18个字符")
|
@Size(max = 18, message = "身份证号长度不能超过18个字符")
|
||||||
@ApiModelProperty(value = "身份证号")
|
@ApiModelProperty(value = "身份证号")
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,9 @@ public class OrgPersonnelModifyCmd {
|
||||||
@ApiModelProperty(value = "出生日期")
|
@ApiModelProperty(value = "出生日期")
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "参加工作日期")
|
||||||
|
private LocalDate joinWorkDate;
|
||||||
|
|
||||||
@Pattern(regexp = "^\\d{17}[\\dXx]$", message = "身份证号格式不正确")
|
@Pattern(regexp = "^\\d{17}[\\dXx]$", message = "身份证号格式不正确")
|
||||||
@Size(max = 18, message = "身份证号长度不能超过18个字符")
|
@Size(max = 18, message = "身份证号长度不能超过18个字符")
|
||||||
@ApiModelProperty(value = "身份证号")
|
@ApiModelProperty(value = "身份证号")
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,9 @@ public class OrgPersonnelEntity {
|
||||||
/** 出生日期 */
|
/** 出生日期 */
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
|
||||||
|
/** 参加工作日期 */
|
||||||
|
private LocalDate joinWorkDate;
|
||||||
|
|
||||||
/** 身份证号 */
|
/** 身份证号 */
|
||||||
private String idCardNo;
|
private String idCardNo;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ public class OrgPersonnelDO {
|
||||||
private Integer genderCode;
|
private Integer genderCode;
|
||||||
private String genderName;
|
private String genderName;
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
private LocalDate joinWorkDate;
|
||||||
private String idCardNo;
|
private String idCardNo;
|
||||||
private String currentAddress;
|
private String currentAddress;
|
||||||
private String officeAddress;
|
private String officeAddress;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue