zs 1 год назад
Родитель
Сommit
2478b78283
2 измененных файлов с 18496 добавлено и 1 удалено
  1. 18493 0
      package-lock.json
  2. 3 1
      src/interface/system/dictType.interface.ts

Разница между файлами не показана из-за своего большого размера
+ 18493 - 0
package-lock.json


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

@@ -27,10 +27,12 @@ export class FVO_dictType {
 export class QDTO_dictType extends SearchBase {
   constructor() {
     const like_prop = [];
-    const props = ['code', 'is_use'];
+    const props = ['title', 'code', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }
+  @ApiProperty({ description: '字典类型名称' })
+  'title': string = undefined;
   @ApiProperty({ description: '编码' })
   'code': string = undefined;
   @ApiProperty({ description: '是否使用' })