feat(osi): 实现通用 Call 与响应判码(T-004)

This commit is contained in:
ila
2026-07-06 22:31:02 +08:00
parent 56acc01d92
commit 2a77a4dbc1
10 changed files with 413 additions and 11 deletions
+18
View File
@@ -0,0 +1,18 @@
package contract
type Envelope struct {
ServiceID string `json:"serviceId"`
UploadInfo any `json:"uploadinfo,omitempty"`
BaseInfo any `json:"baseInfo,omitempty"`
}
type UploadInfo struct {
BaseInfo any `json:"baseInfo,omitempty"`
ManageInfo ManageInfo `json:"manageInfo"`
}
type ManageInfo struct {
DSFMC string `json:"DSFMC"`
OperateUser string `json:"operateUser"`
OperateUnit string `json:"operateUnit"`
}