|
@@ -24,6 +24,8 @@ export class FVO_config {
|
|
|
'contacts': string = undefined;
|
|
|
@ApiProperty({ description: '联系电话' })
|
|
|
'tel': string = undefined;
|
|
|
+ @ApiProperty({ description: '用户协议' })
|
|
|
+ 'agreement': string = undefined;
|
|
|
@ApiProperty({ description: '底部文案' })
|
|
|
'bottom_title': string = undefined;
|
|
|
}
|
|
@@ -60,6 +62,9 @@ export class CDTO_config {
|
|
|
@ApiProperty({ description: '联系电话' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'tel': string = undefined;
|
|
|
+ @ApiProperty({ description: '用户协议' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'agreement': string = undefined;
|
|
|
@ApiProperty({ description: '底部文案' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'bottom_title': string = undefined;
|