feat(shipment): 添加混装功能模块

- 在 shipment 结构体中新增 Mixed 类型字段
- 创建 mixed 包及其相关结构体定义
- 实现混装列表查询、生成等功能接口
- 添加混装箱体和产品的数据模型及操作方法
- 集成客户端调用逻辑并实现 RPC 接口
- 定义混装相关的参数结构体和返回值类型
This commit is contained in:
2026-07-23 09:06:45 +08:00
parent 155a9a33b9
commit 12c74cf464
5 changed files with 233 additions and 0 deletions

View File

@@ -11,4 +11,5 @@ type Shipment struct {
Customs customs
ExchangeSettlement exchangeSettlement
Modify modify
Mixed mixed
}