forked from yoone/API
1
0
Fork 0

Compare commits

...

1 Commits
main ... stable

Author SHA1 Message Date
zhuotianyuan 3fe42c22e6 feat(物流): 添加freightwaves物流平台支持
实现freightwaves物流平台的集成,包括:
1. 新增freightwaves服务类,提供订单创建、查询等功能
2. 添加定时任务同步运单状态
3. 扩展物流DTO以支持多平台选择
4. 修改物流服务支持freightwaves平台订单处理
2026-01-29 11:34:58 +08:00
1 changed files with 2 additions and 3 deletions

View File

@ -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()