|
|
@@ -1,10 +1,13 @@
|
|
|
package com.nb.app.assistant.service.dto;
|
|
|
|
|
|
+import com.nb.app.assistant.api.enums.BindEnum;
|
|
|
import com.nb.core.enums.SexEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* @author lifang
|
|
|
* @version 1.0.0
|
|
|
@@ -36,6 +39,9 @@ public class AssistPatientResult {
|
|
|
@ApiModelProperty(value = "是否为默认看护")
|
|
|
private boolean default_;
|
|
|
|
|
|
+ @ApiModelProperty(value = "医生名称",required = true)
|
|
|
+ private String doctorName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "医生id",required = true)
|
|
|
private String doctorId;
|
|
|
|
|
|
@@ -44,4 +50,10 @@ public class AssistPatientResult {
|
|
|
|
|
|
@ApiModelProperty(value = "医院名称",required = true)
|
|
|
private String tenantName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "当前状态")
|
|
|
+ private BindEnum status;
|
|
|
+
|
|
|
+ @ApiModelProperty("创建时间")
|
|
|
+ private Date createTime;
|
|
|
}
|