fix(refund): 更新退款成功状态码判断逻辑

- 将退款成功状态码从"BBS0000"更改为"000000"
- 确保与最新的退款接口响应格式保持一致
main v1.0.30
gaoda 2025-12-10 10:18:56 +08:00
parent c9fa888b05
commit 0b902def62
1 changed files with 1 additions and 1 deletions

View File

@ -70,5 +70,5 @@ type RefundRespData struct {
// SuccessOrFail 判断退款交易是否成功
func (r *RefundResponse) SuccessOrFail() bool {
return r.Code == "BBS00000"
return r.Code == "000000"
}