mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-10 11:13:44 +08:00
发布v2.15.1版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -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:"更新时间"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user