Commit c3d8dfb2 authored by tangwei's avatar tangwei

修改字段类型

parent b7b9d184
...@@ -26,13 +26,13 @@ public class PersonBasicDto extends BaseDto { ...@@ -26,13 +26,13 @@ public class PersonBasicDto extends BaseDto {
private String name; private String name;
@ApiModelProperty(value = "性别( 0-男 1-女 )") @ApiModelProperty(value = "性别( 0-男 1-女 )")
private Integer sex; private String sex;
@ApiModelProperty(value = "工号") @ApiModelProperty(value = "工号")
private String jobNumber; private String jobNumber;
@ApiModelProperty(value = "证件类型(0-身份证)") @ApiModelProperty(value = "证件类型(0-身份证)")
private Integer idType; private String idType;
@ApiModelProperty(value = "证件编号") @ApiModelProperty(value = "证件编号")
private String idNumber; private String idNumber;
......
...@@ -33,7 +33,7 @@ public class PersonBasic extends BaseEntity { ...@@ -33,7 +33,7 @@ public class PersonBasic extends BaseEntity {
* 性别( 0-男 1-女 ) * 性别( 0-男 1-女 )
*/ */
@TableField("sex") @TableField("sex")
private Integer sex; private String sex;
/** /**
* 工号 * 工号
...@@ -45,7 +45,7 @@ public class PersonBasic extends BaseEntity { ...@@ -45,7 +45,7 @@ public class PersonBasic extends BaseEntity {
* 证件类型(0-身份证) * 证件类型(0-身份证)
*/ */
@TableField("ID_type") @TableField("ID_type")
private Integer idType; private String idType;
/** /**
* 证件编号 * 证件编号
......
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