支付模块
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
318 B

  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. }