Commit 5e1ffc36 authored by 徐俊's avatar 徐俊

xujun

parent ea98f886
......@@ -56,6 +56,22 @@ public class ComPerson extends BaseEntity {
@ApiModelProperty(value = "学位", position = 8 )
@Length(max=36, message = "学位不能大于36")
private String degree;
/** 最高学位授予时间 */
@ApiModelProperty(value = "最高学位授予时间", position = 5)
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date degreeTime;
/** 最高学位授予单位 */
@ApiModelProperty(value = "最高学位授予单位", position = 9)
@Length(max=200, message = "最高学位授予单位")
private Date degreeUnit;
/** 是否为研究生导师 */
@ApiModelProperty(value = "是否为研究生导师", position = 8)
@Length(max=36, message = "是否为研究生导师不能大于36")
private String graduateTeacher;
/** 党派 */
@ApiModelProperty(value = "党派", position = 9)
@Length(max=30, message = "党派")
private String politicalParty;
/** 学历 */
@ApiModelProperty(value = "学历", position = 8)
@Length(max=36, message = "学历不能大于36")
......@@ -101,17 +117,35 @@ public class ComPerson extends BaseEntity {
@Length(max=200, message = "住址不能大于200")
private String address;
/** 开户银行 */
@ApiModelProperty(value = "开户银行", position = 17 )
@ApiModelProperty(value = "开户银行", position = 17)
@Length(max=200, message = "开户银行不能大于100")
private String openBank;
/** 开户账号 */
@ApiModelProperty(value = "开户账号", position = 18 )
@ApiModelProperty(value = "开户账号", position = 18)
@Length(max=200, message = "开户账号不能大于30")
private String openAcount;
/** 工作单位 */
@ApiModelProperty(value = "工作单位", position = 19 )
@ApiModelProperty(value = "工作单位", position = 19)
@Length(max=200, message = "工作单位")
private String workUnit;
/** 主管部门 */
@ApiModelProperty(value = "主管部门", position = 19)
@Length(max=50, message = "主管部门")
private String managerDept;
/** 单位电话 */
@ApiModelProperty(value = "单位电话", position = 19)
@Length(max=20, message = "单位电话")
private String teleUnit;
/** 单位邮政编码 */
@ApiModelProperty(value = "单位邮政编码", position = 19)
@Length(max=10, message = "单位邮政编码")
private String postalCode;
/** 单位通讯地址 */
@ApiModelProperty(value = "单位通讯地址", position = 19)
@Length(max=10, message = "单位通讯地址")
private String addressUnit;
/** 备注 */
@ApiModelProperty(value = "备注", position = 19 )
@Length(max=200, message = "备注不能大于200")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment