|
@@ -18,8 +18,16 @@ export class FVO_estimate {
|
|
'openid': string = undefined;
|
|
'openid': string = undefined;
|
|
@ApiProperty({ description: '品牌' })
|
|
@ApiProperty({ description: '品牌' })
|
|
'brand': string = undefined;
|
|
'brand': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '车型' })
|
|
|
|
+ 'type': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '车系' })
|
|
|
|
+ 'bank': string = undefined;
|
|
@ApiProperty({ description: '上牌日期' })
|
|
@ApiProperty({ description: '上牌日期' })
|
|
'start': string = undefined;
|
|
'start': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '行驶里程' })
|
|
|
|
+ 'course': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '上牌城市' })
|
|
|
|
+ 'city': string = undefined;
|
|
@ApiProperty({ description: '所在地区' })
|
|
@ApiProperty({ description: '所在地区' })
|
|
'place': string = undefined;
|
|
'place': string = undefined;
|
|
@ApiProperty({ description: '联系人' })
|
|
@ApiProperty({ description: '联系人' })
|
|
@@ -55,9 +63,21 @@ export class CDTO_estimate {
|
|
@ApiProperty({ description: '品牌' })
|
|
@ApiProperty({ description: '品牌' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'brand': string = undefined;
|
|
'brand': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '车型' })
|
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
|
+ 'type': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '车系' })
|
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
|
+ 'bank': string = undefined;
|
|
@ApiProperty({ description: '上牌日期' })
|
|
@ApiProperty({ description: '上牌日期' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'start': string = undefined;
|
|
'start': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '行驶里程' })
|
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
|
+ 'course': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '上牌城市' })
|
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
|
+ 'city': string = undefined;
|
|
@ApiProperty({ description: '所在地区' })
|
|
@ApiProperty({ description: '所在地区' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'place': string = undefined;
|
|
'place': string = undefined;
|