zs преди 1 година
родител
ревизия
42dbccf9ff
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      src/interface/system/address.interface.ts

+ 3 - 1
src/interface/system/address.interface.ts

@@ -35,10 +35,12 @@ export class FVO_address {
 export class QDTO_address extends SearchBase {
   constructor() {
     const like_prop = [];
-    const props = [];
+    const props = ['user'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }
+  @ApiProperty({ description: '用户' })
+  'user': string = undefined;
 }
 
 export class QVO_address extends FVO_address {