fix(osi): 加固 Phase 0 验收实现(T-006)

This commit is contained in:
ila
2026-07-06 23:20:42 +08:00
parent def95efb1c
commit 9db2e84476
11 changed files with 110 additions and 22 deletions
+5 -2
View File
@@ -124,8 +124,11 @@ func (c *Client) Call(ctx context.Context, serviceID string, body any, out any)
```go
type Envelope struct {
ServiceID string `json:"serviceId"`
UploadInfo any `json:"uploadinfo,omitempty"` // 创建/更新
BaseInfo any `json:"baseInfo,omitempty"` // 查询
UploadInfo any `json:"uploadinfo,omitempty"` // 查询/创建/更新统一信封
}
type UploadInfo struct {
BaseInfo any `json:"baseInfo,omitempty"`
ManageInfo ManageInfo `json:"manageInfo"`
}
type ManageInfo struct { DSFMC, OperateUnit, OperateUser string }
```