Procházet zdrojové kódy

字典数据查询

zs před 1 rokem
rodič
revize
55608b00a3
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      src/interface/system/dictData.interface.ts

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

@@ -29,12 +29,14 @@ export class FVO_dictData {
 export class QDTO_dictData extends SearchBase {
   constructor() {
     const like_prop = [];
-    const props = ['code', 'is_use'];
+    const props = ['code', 'label', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }
   @ApiProperty({ description: '字典类型编码' })
   'code': string = undefined;
+  @ApiProperty({ description: '数据显示值' })
+  'label': string = undefined;
   @ApiProperty({ description: '是否使用' })
   'is_use': string = undefined;
 }