|
|
@ -119,7 +119,7 @@ public class PatientDto { |
|
|
|
@ApiModelProperty("患者姓名") |
|
|
|
private String name; |
|
|
|
@ApiModelProperty("性别 0女 1男") |
|
|
|
private byte gender; |
|
|
|
private Byte gender; |
|
|
|
@Length(max = 20,message = "名字名称过长") |
|
|
|
@ApiModelProperty("民族") |
|
|
|
private String nation; |
|
|
@ -129,7 +129,7 @@ public class PatientDto { |
|
|
|
@ApiModelProperty("疑似诊断信息") |
|
|
|
private String suspected; |
|
|
|
@ApiModelProperty("是否是演示数据 0正式 1演示") |
|
|
|
private byte valueType; |
|
|
|
private Byte valueType; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|