支付模块
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. package md
  2. type IcbcRes struct {
  3. ResponseBizContent struct {
  4. CusCredit int `json:"cusCredit"`
  5. MsgID string `json:"msg_id"`
  6. ReturnCode int64 `json:"return_code"`
  7. ReturnMsg string `json:"return_msg"`
  8. Success bool `json:"success"`
  9. } `json:"response_biz_content"`
  10. Sign string `json:"sign"`
  11. }