소스 검색

字典管理查询

zs 1 년 전
부모
커밋
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: '是否使用' })