|
@@ -186,4 +186,215 @@ public class SearchData extends HospitalBaseVO {
|
|
|
*/
|
|
|
private List<Scale> scale = new ArrayList<>();
|
|
|
|
|
|
+ public Integer getLength() {
|
|
|
+ return length;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAge() {
|
|
|
+ return age == null ? "" : age.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getAgeNum() {
|
|
|
+ return ageNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSex() {
|
|
|
+ return sex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMarriage() {
|
|
|
+ return marriage == null ? "" : marriage.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getChief() {
|
|
|
+ return chief == null ? "" : chief.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSymptom() {
|
|
|
+ return symptom == null ? "" : symptom.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVital() {
|
|
|
+ return vital == null ? "" : vital.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPasts() {
|
|
|
+ return pasts == null ? "" : pasts.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInfectious() {
|
|
|
+ return infectious == null ? "" : infectious.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSurgical() {
|
|
|
+ return surgical == null ? "" : surgical.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAllergy() {
|
|
|
+ return allergy == null ? "" : allergy.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVaccination() {
|
|
|
+ return vaccination == null ? "" : vaccination.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPersonal() {
|
|
|
+ return personal == null ? "" : personal.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMarital() {
|
|
|
+ return marital == null ? "" : marital.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFamily() {
|
|
|
+ return family == null ? "" : family.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMenstrual() {
|
|
|
+ return menstrual == null ? "" : menstrual.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOther() {
|
|
|
+ return other == null ? "" : other.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLisString() {
|
|
|
+ return lisString == null ? "" : lisString.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPacsString() {
|
|
|
+ return pacsString == null ? "" : pacsString.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDiagString() {
|
|
|
+ return diagString == null ? "" : diagString.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDrugString() {
|
|
|
+ return drugString == null ? "" : drugString.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getDept() {
|
|
|
+ if (dept == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return dept;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Lis> getLis() {
|
|
|
+ if (lis == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return lis;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Pacs> getPacs() {
|
|
|
+ if (pacs == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return pacs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getDiag() {
|
|
|
+ if (diag == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return diag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Drug> getDrug() {
|
|
|
+ if (drug == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return drug;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getOperation() {
|
|
|
+ if (operation == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return operation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ItemExt> getTransfusion() {
|
|
|
+ if (transfusion == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return transfusion;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Lis> getLisOrder() {
|
|
|
+ if (lisOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return lisOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Pacs> getPacsOrder() {
|
|
|
+ if (pacsOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return pacsOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getDiagOrder() {
|
|
|
+ if (diagOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return diagOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Drug> getDrugOrder() {
|
|
|
+ if (drugOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return drugOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getOperationOrder() {
|
|
|
+ if (operationOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return operationOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ItemExt> getTransfusionOrder() {
|
|
|
+ if (transfusionOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return transfusionOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getOtherOrder() {
|
|
|
+ if (otherOrder == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return otherOrder;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Item getDiseaseName() {
|
|
|
+ return diseaseName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Item getOperationName() {
|
|
|
+ return operationName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, String> getOtherIndex() {
|
|
|
+ return otherIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Item> getOtherAdvice() {
|
|
|
+ if (otherAdvice == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return otherAdvice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Scale> getScale() {
|
|
|
+ if (scale == null) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ return scale;
|
|
|
+ }
|
|
|
}
|