This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -12,17 +12,17 @@ import (
// PayRefund is the golang structure of table hg_pay_refund for DAO operations like Where/Data.
type PayRefund struct {
g.Meta `orm:"table:hg_pay_refund, do:true"`
Id interface{} // 主键ID
MemberId interface{} // 会员ID
AppId interface{} // 应用ID
OrderSn interface{} // 业务订单号
RefundTradeNo interface{} // 退款交易号
RefundMoney interface{} // 退款金额
RefundWay interface{} // 退款方式
Ip interface{} // 申请者IP
Reason interface{} // 申请退款原因
Remark interface{} // 退款备注
Status interface{} // 退款状态
Id any // 主键ID
MemberId any // 会员ID
AppId any // 应用ID
OrderSn any // 业务订单号
RefundTradeNo any // 退款交易号
RefundMoney any // 退款金额
RefundWay any // 退款方式
Ip any // 申请者IP
Reason any // 申请退款原因
Remark any // 退款备注
Status any // 退款状态
CreatedAt *gtime.Time // 申请时间
UpdatedAt *gtime.Time // 更新时间
}