|
@@ -20,6 +20,10 @@ export class FVO_news {
|
|
|
'person': string = undefined;
|
|
|
@ApiProperty({ description: '发布时间' })
|
|
|
'time': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转地址' })
|
|
|
+ 'route': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转类型' })
|
|
|
+ 'jump_type': string = undefined;
|
|
|
@ApiProperty({ description: '内容' })
|
|
|
'content': string = undefined;
|
|
|
@ApiProperty({ description: '浏览次数' })
|
|
@@ -49,6 +53,10 @@ export class QDTO_news extends SearchBase {
|
|
|
'time': string = undefined;
|
|
|
@ApiProperty({ description: '类型' })
|
|
|
'type': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转地址' })
|
|
|
+ 'route': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转类型' })
|
|
|
+ 'jump_type': string = undefined;
|
|
|
@ApiProperty({ description: '是否使用' })
|
|
|
'is_use': string = undefined;
|
|
|
@ApiProperty({ description: '是否在首页显示' })
|
|
@@ -85,6 +93,12 @@ export class CDTO_news {
|
|
|
@ApiProperty({ description: '发布时间' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'time': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转地址' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'route': string = undefined;
|
|
|
+ @ApiProperty({ description: '跳转类型' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'jump_type': string = undefined;
|
|
|
@ApiProperty({ description: '内容' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'content': string = undefined;
|