|
@@ -3,6 +3,7 @@ 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 io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
@@ -22,9 +23,14 @@ public class SearchData extends HospitalBaseVO {
|
|
|
*/
|
|
|
private Integer length = 10;
|
|
|
/**
|
|
|
- * 年龄
|
|
|
+ * 年龄文本数据
|
|
|
*/
|
|
|
- private Integer age;
|
|
|
+ private String age;
|
|
|
+ /**
|
|
|
+ * 年龄数字数据
|
|
|
+ */
|
|
|
+ @ApiModelProperty(hidden = true)
|
|
|
+ private Double ageNum;
|
|
|
/**
|
|
|
* 性别(1:男,2:女,3:通用)
|
|
|
*/
|