|
@@ -3,11 +3,13 @@ package com.diagbot.vo;
|
|
|
import com.diagbot.biz.push.entity.Item;
|
|
|
import com.diagbot.biz.push.entity.Lis;
|
|
|
import com.diagbot.biz.push.entity.Pacs;
|
|
|
+import com.diagbot.biz.push.entity.Scale;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -185,6 +187,14 @@ public class PushJoinVO {
|
|
|
* 其他指标
|
|
|
*/
|
|
|
private Map<String, String> otherIndex;
|
|
|
+ /**
|
|
|
+ * 其他医嘱
|
|
|
+ */
|
|
|
+ private List<Item> otherAdvice = new ArrayList<>();
|
|
|
+ /**
|
|
|
+ * 量表结果
|
|
|
+ */
|
|
|
+ private List<Scale> scale = new ArrayList<>();
|
|
|
|
|
|
//创建时间
|
|
|
@ApiModelProperty(hidden = true)
|