This commit is contained in:
邹宗楠
2025-08-06 11:09:00 +08:00
parent d32643e002
commit 82f9bc58f6
2 changed files with 5 additions and 1 deletions

View File

@@ -421,7 +421,7 @@ type SeparateResultQueryResp struct {
DetailDatas []struct {
RecvMerchantNo string `json:"recv_merchant_no"` // 接收方商户号
RecvNo string `json:"recv_no"` // 接收方编号
Amt string `json:"amt"` // 分账金额
Amt int64 `json:"amt"` // 分账金额
} `json:"detail_datas"` // 明细数据
SeparateType string `json:"separate_type"` //
}

View File

@@ -101,3 +101,7 @@ func TestSeparateQueryAmt(t *testing.T) {
// },
// })
//}
func TestSeparateResultQuery(t *testing.T) {
api.SeparateResultQuery("822651059990E2S", "20250806770188016288059000")
}