This commit is contained in:
孟帅
2024-04-22 23:08:40 +08:00
parent 82483bd7b9
commit e144b12580
445 changed files with 17457 additions and 6708 deletions

View File

@@ -10,17 +10,17 @@ import (
// PayRefund is the golang structure for table pay_refund.
type PayRefund struct {
Id uint64 `json:"id" description:"主键ID"`
MemberId int64 `json:"memberId" description:"会员ID"`
AppId string `json:"appId" description:"应用ID"`
OrderSn string `json:"orderSn" description:"业务订单号"`
RefundTradeNo string `json:"refundTradeNo" description:"退款交易号"`
RefundMoney float64 `json:"refundMoney" description:"退款金额"`
RefundWay int `json:"refundWay" description:"退款方式"`
Ip string `json:"ip" description:"申请者IP"`
Reason string `json:"reason" description:"申请退款原因"`
Remark string `json:"remark" description:"退款备注"`
Status int `json:"status" description:"退款状态"`
CreatedAt *gtime.Time `json:"createdAt" description:"申请时间"`
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
Id uint64 `json:"id" orm:"id" description:"主键ID"`
MemberId int64 `json:"memberId" orm:"member_id" description:"会员ID"`
AppId string `json:"appId" orm:"app_id" description:"应用ID"`
OrderSn string `json:"orderSn" orm:"order_sn" description:"业务订单号"`
RefundTradeNo string `json:"refundTradeNo" orm:"refund_trade_no" description:"退款交易号"`
RefundMoney float64 `json:"refundMoney" orm:"refund_money" description:"退款金额"`
RefundWay int `json:"refundWay" orm:"refund_way" description:"退款方式"`
Ip string `json:"ip" orm:"ip" description:"申请者IP"`
Reason string `json:"reason" orm:"reason" description:"申请退款原因"`
Remark string `json:"remark" orm:"remark" description:"退款备注"`
Status int `json:"status" orm:"status" description:"退款状态"`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"申请时间"`
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"`
}