|
@@ -22,6 +22,8 @@ export class FVO_matchPath {
|
|
|
'brief': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_use': string = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ 'status': string = undefined;
|
|
|
}
|
|
|
|
|
|
export class QDTO_matchPath extends SearchBase {
|
|
@@ -35,6 +37,8 @@ export class QDTO_matchPath extends SearchBase {
|
|
|
'order_num': number = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_use': string = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ 'status': string = undefined;
|
|
|
}
|
|
|
|
|
|
export class QVO_matchPath extends FVO_matchPath {
|
|
@@ -66,6 +70,9 @@ export class CDTO_matchPath {
|
|
|
@ApiProperty({ description: '显示顺序' })
|
|
|
@Rule(RuleType['number']().empty(''))
|
|
|
'order_num': number = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'status': string = undefined;
|
|
|
}
|
|
|
|
|
|
export class CVO_matchPath extends FVO_matchPath {
|