@@ -12,6 +12,6 @@ import lombok.Setter;
@Getter
@Setter
public class MedicalIndicationDetail {
- private Integer type; //1-量表,2-公式,3-其他指标
- private JSONObject content; //type<>1 非量表,返回内容;type=1 量表,返回量表名称{"name":""}
+ private Integer type; //1-量表,2-公式,3-其他指标,4-危机值
+ private JSONObject content; //type<>1 非量表,返回内容;type=1 量表,返回量表名称{"name":""} ,controlType:0-radio,1-checkbox,2-text,3-dropdownlist
}
@@ -35,8 +35,9 @@ public class SearchData {
private String scaleName;
private String indications;
+ private String lisString; //化验纯文本
private String lisOrder; //当前正在下单化验
- private String pacOrder; //当前正在下单辅检
+ private String pacsOrder; //当前正在下单辅检
private String otherOrder; //其他
//特征类别
@@ -41,7 +41,8 @@ public class SearchVo {
private String hosCode; // 对接时,hosCode必填
private Integer sysType; //系统类型
-}
+}
@@ -38,6 +38,6 @@ public class SearchData {
@@ -46,7 +46,7 @@ public class AssembleFacade {
searchData.setHosCode(pushVO.getHosCode());
searchData.setLisOrder(pushVO.getLisOrder());
- searchData.setPacOrder(pushVO.getPacOrder());
+ searchData.setPacsOrder(pushVO.getPacsOrder());
searchData.setOtherOrder(pushVO.getOtherOrder());
switch (pushVO.getSex()) {
@@ -42,7 +42,7 @@ public class PushJoinVO {
private String lisString; //化验纯文本
//创建时间
@@ -22,6 +22,6 @@ public class PushVO extends PushBaseVO {