|
@@ -38,6 +38,12 @@ export class FVO_upkeep {
|
|
|
'spec_name': string = undefined;
|
|
|
@ApiProperty({ description: '维修地址' })
|
|
|
'address': string = undefined;
|
|
|
+ @ApiProperty({ description: '商品图片' })
|
|
|
+ 'good_file': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '规格图片' })
|
|
|
+ 'spec_file': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '申请时间' })
|
|
|
+ 'apply_time': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
'status': string = undefined;
|
|
|
}
|
|
@@ -133,9 +139,18 @@ export class CDTO_upkeep {
|
|
|
@ApiProperty({ description: '规格名称' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'spec_name': string = undefined;
|
|
|
+ @ApiProperty({ description: '商品图片' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'good_file': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '规格图片' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'spec_file': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '维修地址' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'address': string = undefined;
|
|
|
+ @ApiProperty({ description: '申请时间' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'apply_time': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'status': string = undefined;
|