feat(osi): 实现通用 Call 与响应判码(T-004)
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
Reference in New Issue
Block a user