This commit is contained in:
孟帅
2023-05-10 23:54:50 +08:00
parent bbe655a4d8
commit 49a96750bf
314 changed files with 15138 additions and 6244 deletions

View File

@@ -0,0 +1,25 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminCash is the golang structure of table hg_admin_cash for DAO operations like Where/Data.
type AdminCash struct {
g.Meta `orm:"table:hg_admin_cash, do:true"`
Id interface{} // ID
MemberId interface{} // 管理员ID
Money interface{} // 提现金额
Fee interface{} // 手续费
LastMoney interface{} // 最终到账金额
Ip interface{} // 申请人IP
Status interface{} // 状态码
Msg interface{} // 处理结果
HandleAt *gtime.Time // 处理时间
CreatedAt *gtime.Time // 申请时间
}

View File

@@ -0,0 +1,30 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminCreditsLog is the golang structure of table hg_admin_credits_log for DAO operations like Where/Data.
type AdminCreditsLog struct {
g.Meta `orm:"table:hg_admin_credits_log, do:true"`
Id interface{} // 变动ID
MemberId interface{} // 管理员ID
AppId interface{} // 应用id
AddonsName interface{} // 插件名称
CreditType interface{} // 变动类型
CreditGroup interface{} // 变动组别
BeforeNum interface{} // 变动前
Num interface{} // 变动数据
AfterNum interface{} // 变动后
Remark interface{} // 备注
Ip interface{} // 操作人IP
MapId interface{} // 关联ID
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -22,6 +22,7 @@ type AdminMember struct {
Salt interface{} // 密码盐
AuthKey interface{} // 授权令牌
PasswordResetToken interface{} // 密码重置令牌
Integral interface{} // 积分
Balance interface{} // 余额
Avatar interface{} // 头像
Sex interface{} // 性别

View File

@@ -0,0 +1,30 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminOauth is the golang structure of table hg_admin_oauth for DAO operations like Where/Data.
type AdminOauth struct {
g.Meta `orm:"table:hg_admin_oauth, do:true"`
Id interface{} // 主键
MemberId interface{} // 用户ID
Unionid interface{} // 唯一ID
OauthClient interface{} // 授权组别
OauthOpenid interface{} // 授权开放ID
Sex interface{} // 性别
Nickname interface{} // 昵称
HeadPortrait interface{} // 头像
Birthday *gtime.Time // 生日
Country interface{} // 国家
Province interface{} // 省
City interface{} // 市
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -0,0 +1,27 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminOrder is the golang structure of table hg_admin_order for DAO operations like Where/Data.
type AdminOrder struct {
g.Meta `orm:"table:hg_admin_order, do:true"`
Id interface{} // 主键
MemberId interface{} // 管理员id
OrderType interface{} // 订单类型
ProductId interface{} // 产品id
OrderSn interface{} // 关联订单号
Money interface{} // 充值金额
Remark interface{} // 备注
RefundReason interface{} // 退款原因
RejectRefundReason interface{} // 拒绝退款原因
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -0,0 +1,46 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/encoding/gjson"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// PayLog is the golang structure of table hg_pay_log for DAO operations like Where/Data.
type PayLog struct {
g.Meta `orm:"table:hg_pay_log, do:true"`
Id interface{} // 主键
MemberId interface{} // 会员ID
AppId interface{} // 应用ID
AddonsName interface{} // 插件名称
OrderSn interface{} // 关联订单号
OrderGroup interface{} // 组别[默认统一支付类型]
Openid interface{} // openid
MchId interface{} // 商户支付账户
Subject interface{} // 订单标题
Detail *gjson.Json // 支付商品详情
AuthCode interface{} // 刷卡码
OutTradeNo interface{} // 商户订单号
TransactionId interface{} // 交易号
PayType interface{} // 支付类型
PayAmount interface{} // 支付金额
ActualAmount interface{} // 实付金额
PayStatus interface{} // 支付状态
PayAt *gtime.Time // 支付时间
TradeType interface{} // 交易类型
RefundSn interface{} // 退款单号
IsRefund interface{} // 是否退款
Custom interface{} // 自定义参数
CreateIp interface{} // 创建者IP
PayIp interface{} // 支付者IP
NotifyUrl interface{} // 支付通知回调地址
ReturnUrl interface{} // 买家付款成功跳转地址
TraceIds *gjson.Json // 链路ID集合
Status interface{} // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}

View File

@@ -0,0 +1,28 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// 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{} // 退款状态
CreatedAt *gtime.Time // 申请时间
UpdatedAt *gtime.Time // 更新时间
}