|
@@ -26,6 +26,10 @@ export class FVO_Order {
|
|
'buy_time': string = undefined;
|
|
'buy_time': string = undefined;
|
|
@ApiProperty({ description: '审核记录' })
|
|
@ApiProperty({ description: '审核记录' })
|
|
'record': Array<any> = undefined;
|
|
'record': Array<any> = undefined;
|
|
|
|
+ @ApiProperty({ description: '领导' })
|
|
|
|
+ 'leader': Array<any> = undefined;
|
|
|
|
+ @ApiProperty({ description: '会计' })
|
|
|
|
+ 'accounting': Array<any> = undefined;
|
|
@ApiProperty({ description: '订单状态' })
|
|
@ApiProperty({ description: '订单状态' })
|
|
'status': string = undefined;
|
|
'status': string = undefined;
|
|
}
|
|
}
|
|
@@ -71,6 +75,12 @@ export class CDTO_Order {
|
|
@ApiProperty({ description: '审核记录' })
|
|
@ApiProperty({ description: '审核记录' })
|
|
@Rule(RuleType['array']().empty(''))
|
|
@Rule(RuleType['array']().empty(''))
|
|
'record': Array<any> = undefined;
|
|
'record': Array<any> = undefined;
|
|
|
|
+ @ApiProperty({ description: '领导' })
|
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
|
+ 'leader': Array<any> = undefined;
|
|
|
|
+ @ApiProperty({ description: '会计' })
|
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
|
+ 'accounting': Array<any> = undefined;
|
|
@ApiProperty({ description: '订单状态' })
|
|
@ApiProperty({ description: '订单状态' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'status': string = undefined;
|
|
'status': string = undefined;
|