|
@@ -37,12 +37,11 @@ public class BizClinicAddOrEditDTO implements Serializable {
|
|
|
@ApiModelProperty(value = "头像图片链接(医生端可不传)",position = 2)
|
|
@ApiModelProperty(value = "头像图片链接(医生端可不传)",position = 2)
|
|
|
private String imageUrl;
|
|
private String imageUrl;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "患者姓名", position = 3)
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "患者姓名", position = 3,required = true)
|
|
|
@NotBlank (message = "患者姓名不能为空",groups = {Update.class, Insert.class})
|
|
@NotBlank (message = "患者姓名不能为空",groups = {Update.class, Insert.class})
|
|
|
private String patientName;
|
|
private String patientName;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "住院号(编辑时,住院号不可编辑)", position = 4,required = true)
|
|
|
|
|
- @NotBlank (message = "住院号不能为空",groups = {Insert.class})
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "住院号(编辑时,住院号不可编辑)", position = 4)
|
|
|
private String patientCode;
|
|
private String patientCode;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "年龄", position = 5,required = true)
|
|
@ApiModelProperty(value = "年龄", position = 5,required = true)
|