Parcourir la source

Merge branch 'main' of http://git.cc-lotus.info/follow-up/follow_server

lrf il y a 1 an
Parent
commit
a8cb8a672d

+ 1 - 1
src/interface/adv.interface.ts

@@ -27,7 +27,7 @@ export class FVO_adv {
 export class QDTO_adv extends SearchBase {
   constructor() {
     const like_prop = ['title'];
-    const props = ['is_use'];
+    const props = ['title', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }

+ 1 - 1
src/interface/article.interface.ts

@@ -37,7 +37,7 @@ export class FVO_article {
 export class QDTO_article extends SearchBase {
   constructor() {
     const like_prop = ['title'];
-    const props = ['doctor', 'create_time', 'is_use'];
+    const props = ['title', 'doctor', 'create_time', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }

+ 1 - 1
src/interface/doctor.interface.ts

@@ -41,7 +41,7 @@ export class FVO_doctor {
 export class QDTO_doctor extends SearchBase {
   constructor() {
     const like_prop = ['name'];
-    const props = ['account', 'mobile', 'hos_name', 'dept_name', 'title', 'post'];
+    const props = ['account', 'name', 'mobile', 'hos_name', 'dept_name', 'title', 'post'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }

+ 1 - 1
src/interface/group.interface.ts

@@ -27,7 +27,7 @@ export class FVO_group {
 export class QDTO_group extends SearchBase {
   constructor() {
     const like_prop = ['name'];
-    const props = ['doctor', 'patients'];
+    const props = ['name', 'doctor', 'patients'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }

+ 1 - 1
src/interface/nurse.interface.ts

@@ -43,7 +43,7 @@ export class FVO_nurse {
 export class QDTO_nurse extends SearchBase {
   constructor() {
     const like_prop = ['name'];
-    const props = ['account', 'mobile', 'hos_name', 'dept_name', 'title', 'post'];
+    const props = ['account', 'name', 'mobile', 'hos_name', 'dept_name', 'title', 'post'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }

+ 1 - 1
src/interface/patient.interface.ts

@@ -41,7 +41,7 @@ export class FVO_patient {
 export class QDTO_patient extends SearchBase {
   constructor() {
     const like_prop = ['name'];
-    const props = ['openid', 'card_no', 'gender', 'age', 'address', 'mobile', 'urgent_name', 'urgent_mobile'];
+    const props = ['name', 'openid', 'card_no', 'gender', 'age', 'address', 'mobile', 'urgent_name', 'urgent_mobile'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }