|
@@ -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 {
|