Browse Source

修改是否使用

zs 1 year ago
parent
commit
2143be7835
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/interface/platform/tags.interface.ts

+ 3 - 1
src/interface/platform/tags.interface.ts

@@ -35,7 +35,7 @@ export class FVO_tags {
 export class QDTO_tags extends SearchBase {
   constructor() {
     const like_prop = [];
-    const props = ['title', 'type'];
+    const props = ['title', 'type', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }
@@ -43,6 +43,8 @@ export class QDTO_tags extends SearchBase {
   'title': string = undefined;
   @ApiProperty({ description: '类型' })
   'type': string = undefined;
+  @ApiProperty({ description: '是否使用' })
+  'is_use': string = undefined;
 }
 
 export class QVO_tags extends FVO_tags {