feat(物流): 添加freightwaves物流平台支持
实现freightwaves物流平台的集成,包括: 1. 新增freightwaves服务类,提供订单创建、查询等功能 2. 添加定时任务同步运单状态 3. 扩展物流DTO以支持多平台选择 4. 修改物流服务支持freightwaves平台订单处理
This commit is contained in:
parent
0b211628f3
commit
3fe42c22e6
|
|
@ -19,16 +19,15 @@ export class ShipmentBookDTO {
|
|||
@ApiProperty({ type: 'number', isArray: true })
|
||||
@Rule(RuleType.array<number>().default([]))
|
||||
orderIds?: number[];
|
||||
|
||||
|
||||
@ApiProperty()
|
||||
@Rule(RuleType.string())
|
||||
shipmentPlatform: string;
|
||||
|
||||
@ApiProperty()
|
||||
@Rule(RuleType.string())
|
||||
@Rule(RuleType.any())
|
||||
courierCompany: string;
|
||||
}
|
||||
|
||||
export class ShipmentFeeBookDTO {
|
||||
|
||||
@ApiProperty()
|
||||
|
|
|
|||
Loading…
Reference in New Issue