|
@@ -1,5 +1,6 @@
|
|
|
package com.nb.app.assistant.controller.vo;
|
|
package com.nb.app.assistant.controller.vo;
|
|
|
|
|
|
|
|
|
|
+import com.nb.app.assistant.enums.ApplyEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import io.swagger.annotations.ApiParam;
|
|
@@ -20,12 +21,19 @@ public class MonitorAddVo {
|
|
|
@ApiModelProperty(value = "疼痛小助手用户id",required = true)
|
|
@ApiModelProperty(value = "疼痛小助手用户id",required = true)
|
|
|
@NotNull(message = "疼痛小助手用户id不能为空")
|
|
@NotNull(message = "疼痛小助手用户id不能为空")
|
|
|
private String assistantUserId;
|
|
private String assistantUserId;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "被监护病人id",required = true)
|
|
@ApiModelProperty(value = "被监护病人id",required = true)
|
|
|
@NotNull(message = "被监护病人id不能为空")
|
|
@NotNull(message = "被监护病人id不能为空")
|
|
|
private String patientId;
|
|
private String patientId;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "app医生端用户id",required = true)
|
|
@ApiModelProperty(value = "app医生端用户id",required = true)
|
|
|
@NotNull(message = "app医生端用户id不能为空")
|
|
@NotNull(message = "app医生端用户id不能为空")
|
|
|
private String appDoctorUserId;
|
|
private String appDoctorUserId;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "申请途径",allowableValues = "0(手动申请) 1(邀请码申请)",required = true)
|
|
|
|
|
+ @NotNull(message = "申请途径不能为空")
|
|
|
|
|
+ private ApplyEnum apply;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "医院id",required = true)
|
|
@ApiModelProperty(value = "医院id",required = true)
|
|
|
@NotNull(message = "医院id不能为空")
|
|
@NotNull(message = "医院id不能为空")
|
|
|
private String tenantId;
|
|
private String tenantId;
|