Refactor and optimize MessageCenter, add paramset.go

This commit is contained in:
renzhiyuan 2025-03-28 18:50:56 +08:00
parent 5c982fb266
commit 49fb27e10e
1 changed files with 10 additions and 9 deletions

View File

@ -44,17 +44,18 @@ type (
}
Finance struct {
CheckUserId string `json:"checkUserId"` //审核人
Sync int64 `json:"sync"` //是否是异步,如果为异步,付款申请和业务申请是同时进行
Amount string `json:"amount"` //金额
GoodsInfo string `json:"goodsInfo"` //商品信息
PaymentAccount string `json:"payment_account"` //付款方账户
TaxAmount string `json:"tax_amount"` //税率
CallbackUrl string `json:"callback_url"` //回调地址
Remark string `json:"remark"` //备注
CheckUserId string `json:"checkUserId"` //审核人
Sync int64 `json:"sync"` //是否是异步,如果为异步,付款申请和业务申请是同时进行
Amount string `json:"amount"` //金额
GoodsInfo string `json:"goodsInfo"` //商品信息
PaymentAccount string `json:"paymentAccount"` //付款方账户
TaxAmount string `json:"taxAmount"` //税率
CallbackUrl string `json:"callbackUrl"` //回调地址
Remark string `json:"remark"`
SystemName string `json:"systemName"` //业务系统名称
SubjectName string `json:"subjectName"` //户名
BankInfo BankInfo `json:"bankInfo"`
}
BankInfo struct {
ResellerName string `json:"resellerName"` //供应商名称
BankName string `json:"bankName"` //银行名称