12 lines
383 B
Go
12 lines
383 B
Go
package proto
|
|
|
|
type ExtAgreeCallbackReq struct {
|
|
CooperatorId string `json:"cooperatorId"` // 商户对接唯一标识
|
|
BusinessBody string `json:"businessBody"` // AES加密后的字符串
|
|
}
|
|
|
|
type ExtSingleDistributeCallbackReq struct {
|
|
CooperatorId string `json:"cooperatorId"` // 商户对接唯一标识
|
|
BusinessBody string `json:"businessBody"` // AES加密后的字符串
|
|
}
|