|
|
|
@ -19,6 +19,8 @@ public class TRecordResultReq
|
|
|
|
|
private String sex;
|
|
|
|
|
@ApiModelProperty("患者年龄")
|
|
|
|
|
private Integer age;
|
|
|
|
|
@ApiModelProperty("档案号")
|
|
|
|
|
private String identifier;
|
|
|
|
|
@ApiModelProperty("医生id")
|
|
|
|
|
private Long doctorId;
|
|
|
|
|
@ApiModelProperty("医院id")
|
|
|
|
@ -73,6 +75,16 @@ public class TRecordResultReq
|
|
|
|
|
this.age = age;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getIdentifier()
|
|
|
|
|
{
|
|
|
|
|
return identifier;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIdentifier(String identifier)
|
|
|
|
|
{
|
|
|
|
|
this.identifier = identifier;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getDoctorId()
|
|
|
|
|
{
|
|
|
|
|
return doctorId;
|
|
|
|
|