zs 1 rok pred
rodič
commit
55608b00a3

+ 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;
 }