支付模块
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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