活动模块,计划任务模块 加入第三方
This commit is contained in:
18
internal/model/do/community_fans.go
Normal file
18
internal/model/do/community_fans.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityFans is the golang structure of table shiningu_community_fans for DAO operations like Where/Data.
|
||||
type CommunityFans struct {
|
||||
g.Meta `orm:"table:shiningu_community_fans, do:true"`
|
||||
Uid interface{} // 用户编号
|
||||
Fans interface{} // 粉丝编号
|
||||
CreatedAt *gtime.Time // 关注时间
|
||||
}
|
||||
19
internal/model/do/community_feeds.go
Normal file
19
internal/model/do/community_feeds.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityFeeds is the golang structure of table shiningu_community_feeds for DAO operations like Where/Data.
|
||||
type CommunityFeeds struct {
|
||||
g.Meta `orm:"table:shiningu_community_feeds, do:true"`
|
||||
Id interface{} // 流水
|
||||
Uid interface{} //
|
||||
PostId interface{} // 帖子编号
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
}
|
||||
23
internal/model/do/community_gift.go
Normal file
23
internal/model/do/community_gift.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityGift is the golang structure of table shiningu_community_gift for DAO operations like Where/Data.
|
||||
type CommunityGift struct {
|
||||
g.Meta `orm:"table:shiningu_community_gift, do:true"`
|
||||
Id interface{} //
|
||||
Uid interface{} // 收礼玩家编号
|
||||
FromUid interface{} // 送礼玩家编号
|
||||
Type interface{} // 送礼类型
|
||||
Pid interface{} // 帖子编号
|
||||
ItemId interface{} // 礼物编号
|
||||
Count interface{} // 礼物数量
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
}
|
||||
16
internal/model/do/community_menu.go
Normal file
16
internal/model/do/community_menu.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// CommunityMenu is the golang structure of table shiningu_community_menu for DAO operations like Where/Data.
|
||||
type CommunityMenu struct {
|
||||
g.Meta `orm:"table:shiningu_community_menu, do:true"`
|
||||
Id interface{} //
|
||||
Name interface{} // 栏目名称
|
||||
}
|
||||
25
internal/model/do/community_notice.go
Normal file
25
internal/model/do/community_notice.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityNotice is the golang structure of table shiningu_community_notice for DAO operations like Where/Data.
|
||||
type CommunityNotice struct {
|
||||
g.Meta `orm:"table:shiningu_community_notice, do:true"`
|
||||
Id interface{} //
|
||||
Uid interface{} // 用户编号
|
||||
FromUid interface{} // 对方用户编号
|
||||
Type interface{} // 类型
|
||||
Sid interface{} // 来源编号
|
||||
Content interface{} // 正文
|
||||
Extend interface{} // 附加属性
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
Status interface{} // 通知状态
|
||||
}
|
||||
38
internal/model/do/community_posts.go
Normal file
38
internal/model/do/community_posts.go
Normal file
@@ -0,0 +1,38 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityPosts is the golang structure of table shiningu_community_posts for DAO operations like Where/Data.
|
||||
type CommunityPosts struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts, do:true"`
|
||||
Id interface{} // 帖子编号
|
||||
Tid interface{} // 帖子栏目
|
||||
Uid interface{} // 发布者
|
||||
Click interface{} // 点击数
|
||||
LikeCount interface{} // 点赞数量
|
||||
CollectCount interface{} // 收藏数量
|
||||
Popularity interface{} // 人气度热度
|
||||
Charm interface{} // 魅力值
|
||||
Language interface{} // 语言
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
Topic1 interface{} // 话题1
|
||||
Topic2 interface{} // 话题2
|
||||
Status interface{} // 帖子状态 -1限流 0 正常
|
||||
Recommend interface{} // 小编推荐
|
||||
Extend interface{} // 附加信息
|
||||
At interface{} // 用户的at功能
|
||||
Period interface{} // 最新期数
|
||||
Price interface{} // 当前价格
|
||||
Index interface{} // 索引编号
|
||||
Gesture interface{} // 手势
|
||||
CharacterNum interface{} // 角色数量
|
||||
}
|
||||
28
internal/model/do/community_posts_0.go
Normal file
28
internal/model/do/community_posts_0.go
Normal file
@@ -0,0 +1,28 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// CommunityPosts0 is the golang structure of table shiningu_community_posts_0 for DAO operations like Where/Data.
|
||||
type CommunityPosts0 struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_0, do:true"`
|
||||
Id interface{} // 帖子编号
|
||||
Title interface{} // 标题
|
||||
Content interface{} // 帖子正文
|
||||
Images interface{} // 帖子图片批量
|
||||
Image interface{} // 图片
|
||||
ImagesRatio interface{} // 图片长宽比
|
||||
Like interface{} // 点赞
|
||||
Collect interface{} // 收藏
|
||||
Extend interface{} // 附加信息
|
||||
At interface{} // at
|
||||
Data interface{} // 内容属性
|
||||
UseIds interface{} // 最新期数
|
||||
Share interface{} // 分享帖子
|
||||
AiScore interface{} //
|
||||
}
|
||||
28
internal/model/do/community_posts_1.go
Normal file
28
internal/model/do/community_posts_1.go
Normal file
@@ -0,0 +1,28 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// CommunityPosts1 is the golang structure of table shiningu_community_posts_1 for DAO operations like Where/Data.
|
||||
type CommunityPosts1 struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_1, do:true"`
|
||||
Id interface{} // 帖子编号
|
||||
Title interface{} // 标题
|
||||
Content interface{} // 帖子正文
|
||||
Images interface{} // 帖子图片批量
|
||||
Image interface{} // 图片
|
||||
ImagesRatio interface{} // 图片长宽比
|
||||
Like interface{} // 点赞
|
||||
Collect interface{} // 收藏
|
||||
Extend interface{} // 附加信息
|
||||
At interface{} // at
|
||||
Data interface{} // 内容属性
|
||||
UseIds interface{} // 最新期数
|
||||
Share interface{} // 分享帖子
|
||||
AiScore interface{} //
|
||||
}
|
||||
17
internal/model/do/community_posts_details.go
Normal file
17
internal/model/do/community_posts_details.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// CommunityPostsDetails is the golang structure of table shiningu_community_posts_details for DAO operations like Where/Data.
|
||||
type CommunityPostsDetails struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_details, do:true"`
|
||||
Id interface{} //
|
||||
Attachment interface{} // 帖子附件
|
||||
SlotsImg interface{} // 槽位图片
|
||||
}
|
||||
17
internal/model/do/community_posts_hot_del.go
Normal file
17
internal/model/do/community_posts_hot_del.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityPostsHotDel is the golang structure of table shiningu_community_posts_hot_del for DAO operations like Where/Data.
|
||||
type CommunityPostsHotDel struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_hot_del, do:true"`
|
||||
Id interface{} // 帖子编号
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
}
|
||||
19
internal/model/do/community_posts_recommend.go
Normal file
19
internal/model/do/community_posts_recommend.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityPostsRecommend is the golang structure of table shiningu_community_posts_recommend for DAO operations like Where/Data.
|
||||
type CommunityPostsRecommend struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_recommend, do:true"`
|
||||
Pid interface{} // 帖子编号
|
||||
Type interface{} // 推荐类型
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
EndTime *gtime.Time // 结束时间
|
||||
}
|
||||
28
internal/model/do/community_posts_reply.go
Normal file
28
internal/model/do/community_posts_reply.go
Normal file
@@ -0,0 +1,28 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommunityPostsReply is the golang structure of table shiningu_community_posts_reply for DAO operations like Where/Data.
|
||||
type CommunityPostsReply struct {
|
||||
g.Meta `orm:"table:shiningu_community_posts_reply, do:true"`
|
||||
Id interface{} // 唯一id
|
||||
Pid interface{} // 主贴id
|
||||
Uid interface{} //
|
||||
Uid2 interface{} // 被回复者的uid
|
||||
Content interface{} // 正文
|
||||
Extend interface{} // 附加数据
|
||||
TopId interface{} // 上级id
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
Sort interface{} // 跟帖顺序
|
||||
AiScore interface{} // 机器评分
|
||||
Status interface{} // 状态
|
||||
At interface{} // 用户的at功能
|
||||
Like interface{} // 回复点赞
|
||||
}
|
||||
22
internal/model/do/community_user.go
Normal file
22
internal/model/do/community_user.go
Normal file
@@ -0,0 +1,22 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// CommunityUser is the golang structure of table shiningu_community_user for DAO operations like Where/Data.
|
||||
type CommunityUser struct {
|
||||
g.Meta `orm:"table:shiningu_community_user, do:true"`
|
||||
Uid interface{} //
|
||||
Like interface{} // 点赞
|
||||
Like2 interface{} // 帖子回复点赞
|
||||
Collect interface{} // 收藏
|
||||
FollowNum interface{} // 关注数量
|
||||
FansNum interface{} // 粉丝数量
|
||||
Gift interface{} // 礼物值
|
||||
Blacklist interface{} // 黑名单
|
||||
}
|
||||
25
internal/model/do/config_act.go
Normal file
25
internal/model/do/config_act.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// ConfigAct is the golang structure of table shiningu_config_act for DAO operations like Where/Data.
|
||||
type ConfigAct struct {
|
||||
g.Meta `orm:"table:shiningu_config_act, do:true"`
|
||||
Id interface{} // 流水编号
|
||||
Type interface{} // 活动类型
|
||||
Actid interface{} // 活动编号
|
||||
Name interface{} // 活动名称
|
||||
Hid interface{} // 活动标识
|
||||
Data interface{} // 活动数据
|
||||
StartTime *gtime.Time // 开始时间
|
||||
EndTime *gtime.Time // 结束时间
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
32
internal/model/do/config_modal_box.go
Normal file
32
internal/model/do/config_modal_box.go
Normal file
@@ -0,0 +1,32 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// ConfigModalBox is the golang structure of table shiningu_config_modal_box for DAO operations like Where/Data.
|
||||
type ConfigModalBox struct {
|
||||
g.Meta `orm:"table:shiningu_config_modal_box, do:true"`
|
||||
Id interface{} // 主键
|
||||
ModalBoxId interface{} // 弹框id
|
||||
UserType interface{} // 特定用户
|
||||
Tips interface{} // 弹框tips选项
|
||||
Name interface{} // 名称
|
||||
Title interface{} // 标题
|
||||
Content interface{} // 正文
|
||||
Type interface{} // 类型
|
||||
Style interface{} // 样式
|
||||
Weight interface{} // 权重
|
||||
Attachments interface{} // 附件
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
Status interface{} // 状态 1开始 0关闭
|
||||
Notes interface{} // 备注
|
||||
StartTime *gtime.Time // 开始时间
|
||||
EndTime *gtime.Time // 结束时间
|
||||
}
|
||||
19
internal/model/do/game_act.go
Normal file
19
internal/model/do/game_act.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameAct is the golang structure of table shiningu_game_act for DAO operations like Where/Data.
|
||||
type GameAct struct {
|
||||
g.Meta `orm:"table:shiningu_game_act, do:true"`
|
||||
Uid interface{} // 玩家编号
|
||||
ActId interface{} // 活动编号
|
||||
Action interface{} // 活动配置
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
18
internal/model/do/game_bag.go
Normal file
18
internal/model/do/game_bag.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// GameBag is the golang structure of table shiningu_game_bag for DAO operations like Where/Data.
|
||||
type GameBag struct {
|
||||
g.Meta `orm:"table:shiningu_game_bag, do:true"`
|
||||
Uid interface{} // 用户标识
|
||||
List interface{} // 道具数据
|
||||
Book interface{} // 图鉴
|
||||
Hand interface{} // 手势
|
||||
}
|
||||
19
internal/model/do/game_config.go
Normal file
19
internal/model/do/game_config.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameConfig is the golang structure of table shiningu_game_config for DAO operations like Where/Data.
|
||||
type GameConfig struct {
|
||||
g.Meta `orm:"table:shiningu_game_config, do:true"`
|
||||
Name interface{} // 配置名称
|
||||
Data interface{} // 配置内容
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
18
internal/model/do/game_kv.go
Normal file
18
internal/model/do/game_kv.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameKv is the golang structure of table shiningu_game_kv for DAO operations like Where/Data.
|
||||
type GameKv struct {
|
||||
g.Meta `orm:"table:shiningu_game_kv, do:true"`
|
||||
Uid interface{} // 用户
|
||||
Kv interface{} // 变量
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
27
internal/model/do/game_mail.go
Normal file
27
internal/model/do/game_mail.go
Normal file
@@ -0,0 +1,27 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameMail is the golang structure of table shiningu_game_mail for DAO operations like Where/Data.
|
||||
type GameMail struct {
|
||||
g.Meta `orm:"table:shiningu_game_mail, do:true"`
|
||||
Id interface{} // 流水
|
||||
Uid interface{} // 用户标识
|
||||
Type interface{} // 类型
|
||||
Title interface{} // 标题
|
||||
Content interface{} // 正文
|
||||
Items interface{} // 奖励道具
|
||||
HaveItems interface{} // 是否有附件
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
Sign interface{} // 署名
|
||||
EndTime *gtime.Time // 结束时间
|
||||
Extend interface{} // 附加参数
|
||||
Status interface{} // 状态
|
||||
}
|
||||
23
internal/model/do/game_mail_mass.go
Normal file
23
internal/model/do/game_mail_mass.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameMailMass is the golang structure of table shiningu_game_mail_mass for DAO operations like Where/Data.
|
||||
type GameMailMass struct {
|
||||
g.Meta `orm:"table:shiningu_game_mail_mass, do:true"`
|
||||
Id interface{} // 主键
|
||||
Title interface{} // 标题
|
||||
Type interface{} // 类型
|
||||
Content interface{} // 正文
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
Items interface{} // 奖励
|
||||
Sign interface{} // 署名
|
||||
EndTime *gtime.Time // 结束时间
|
||||
}
|
||||
16
internal/model/do/game_mail_user.go
Normal file
16
internal/model/do/game_mail_user.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// GameMailUser is the golang structure of table shiningu_game_mail_user for DAO operations like Where/Data.
|
||||
type GameMailUser struct {
|
||||
g.Meta `orm:"table:shiningu_game_mail_user, do:true"`
|
||||
Uid interface{} //
|
||||
Mass interface{} // 群发邮件领取列表
|
||||
}
|
||||
29
internal/model/do/game_pay.go
Normal file
29
internal/model/do/game_pay.go
Normal file
@@ -0,0 +1,29 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GamePay is the golang structure of table shiningu_game_pay for DAO operations like Where/Data.
|
||||
type GamePay struct {
|
||||
g.Meta `orm:"table:shiningu_game_pay, do:true"`
|
||||
OrderId interface{} // 订单编号
|
||||
Uid interface{} //
|
||||
TerraceOrderId interface{} // 平台订单id
|
||||
Device interface{} // 设备名称
|
||||
Channel interface{} // 支付渠道
|
||||
ShopId interface{} // 商品id
|
||||
Cent interface{} // 美分(不要使用小数点)
|
||||
PackageName interface{} // 包名
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
PayTime *gtime.Time // 支付时间
|
||||
Status interface{} // 状态
|
||||
Token interface{} // 支付标识
|
||||
Ip interface{} // ip地址
|
||||
}
|
||||
25
internal/model/do/game_rank.go
Normal file
25
internal/model/do/game_rank.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// GameRank is the golang structure of table shiningu_game_rank for DAO operations like Where/Data.
|
||||
type GameRank struct {
|
||||
g.Meta `orm:"table:shiningu_game_rank, do:true"`
|
||||
Key interface{} //
|
||||
RankId interface{} // 排行榜编号
|
||||
Type interface{} // 排行榜类型
|
||||
Data interface{} // 数据
|
||||
CreatedAt *gtime.Time // 排行榜创建时间
|
||||
StartTime *gtime.Time // 榜单开始时间
|
||||
EndTime *gtime.Time // 榜单结束时间
|
||||
Status interface{} //
|
||||
Image interface{} // 结算封面
|
||||
FirstUid interface{} // 第一名的用户id
|
||||
}
|
||||
20
internal/model/do/game_stage.go
Normal file
20
internal/model/do/game_stage.go
Normal file
@@ -0,0 +1,20 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// GameStage is the golang structure of table shiningu_game_stage for DAO operations like Where/Data.
|
||||
type GameStage struct {
|
||||
g.Meta `orm:"table:shiningu_game_stage, do:true"`
|
||||
Uid interface{} // 用户标识
|
||||
Chapter interface{} // 章节
|
||||
WinData interface{} // 通关过的数据
|
||||
StageData interface{} // 关卡数据
|
||||
Star interface{} // 章节获得的总星
|
||||
RwdData interface{} // 通关奖励领取
|
||||
}
|
||||
21
internal/model/do/member_authorize.go
Normal file
21
internal/model/do/member_authorize.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberAuthorize is the golang structure of table shiningu_member_authorize for DAO operations like Where/Data.
|
||||
type MemberAuthorize struct {
|
||||
g.Meta `orm:"table:shiningu_member_authorize, do:true"`
|
||||
Code interface{} // 授权码
|
||||
Uid interface{} // 用户标识
|
||||
Type interface{} // 认证方式
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
CreateIp interface{} // 创建ip
|
||||
}
|
||||
18
internal/model/do/member_ban.go
Normal file
18
internal/model/do/member_ban.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberBan is the golang structure of table shiningu_member_ban for DAO operations like Where/Data.
|
||||
type MemberBan struct {
|
||||
g.Meta `orm:"table:shiningu_member_ban, do:true"`
|
||||
Uid interface{} // 用户编号
|
||||
CreatedAt *gtime.Time // 禁用时间
|
||||
Type interface{} // 禁用类型
|
||||
}
|
||||
18
internal/model/do/member_friend.go
Normal file
18
internal/model/do/member_friend.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberFriend is the golang structure of table shiningu_member_friend for DAO operations like Where/Data.
|
||||
type MemberFriend struct {
|
||||
g.Meta `orm:"table:shiningu_member_friend, do:true"`
|
||||
Uid interface{} // 当前用户
|
||||
Uid2 interface{} // 对方编号
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
}
|
||||
18
internal/model/do/member_limit.go
Normal file
18
internal/model/do/member_limit.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberLimit is the golang structure of table shiningu_member_limit for DAO operations like Where/Data.
|
||||
type MemberLimit struct {
|
||||
g.Meta `orm:"table:shiningu_member_limit, do:true"`
|
||||
Uid interface{} // 用户uid
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
Data interface{} // 玩家权限
|
||||
}
|
||||
24
internal/model/do/member_save.go
Normal file
24
internal/model/do/member_save.go
Normal file
@@ -0,0 +1,24 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberSave is the golang structure of table shiningu_member_save for DAO operations like Where/Data.
|
||||
type MemberSave struct {
|
||||
g.Meta `orm:"table:shiningu_member_save, do:true"`
|
||||
Uid interface{} // 用户编号
|
||||
Type interface{} // 存档类型
|
||||
Slot interface{} // 存档槽位
|
||||
Data interface{} // 存档内容
|
||||
S3 interface{} // s3地址
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
Name interface{} // 自定义名字
|
||||
Image interface{} // 上传图片
|
||||
UseIds interface{} // 使用的道具id
|
||||
}
|
||||
42
internal/model/do/member_user.go
Normal file
42
internal/model/do/member_user.go
Normal file
@@ -0,0 +1,42 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// MemberUser is the golang structure of table shiningu_member_user for DAO operations like Where/Data.
|
||||
type MemberUser struct {
|
||||
g.Meta `orm:"table:shiningu_member_user, do:true"`
|
||||
Uid interface{} // 用户标识
|
||||
Guid interface{} // 用户本次登录标识
|
||||
Gid interface{} // 用户组编号
|
||||
AccountLogin interface{} // 社交账号登录
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
Nickname interface{} // 昵称
|
||||
Phone interface{} // 绑定手机
|
||||
Email interface{} // 绑定邮箱
|
||||
Money interface{} // 充值货币
|
||||
Save interface{} // 储存路径
|
||||
Slots interface{} // 槽位数量
|
||||
OnlineDuration interface{} // 在线时长
|
||||
OnlineStatus interface{} // 在线状态
|
||||
OnlineTime *gtime.Time // 上线时间
|
||||
OfflineTime *gtime.Time // 离线时间
|
||||
CreateIp interface{} // 创号ip地址
|
||||
UpdateIp interface{} // 更新IP地址
|
||||
Level interface{} // 等级
|
||||
Exp interface{} // 经验
|
||||
Title interface{} // 称号
|
||||
Avatar interface{} // 头像
|
||||
AvatarFrame interface{} // 头像框
|
||||
Popularity interface{} // 人气度
|
||||
Charm interface{} // 魅力值
|
||||
Gift interface{} // 礼物值
|
||||
}
|
||||
15
internal/model/do/system_cron.go
Normal file
15
internal/model/do/system_cron.go
Normal file
@@ -0,0 +1,15 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// SystemCron is the golang structure of table shiningu_system_cron for DAO operations like Where/Data.
|
||||
type SystemCron struct {
|
||||
g.Meta `orm:"table:shiningu_system_cron, do:true"`
|
||||
Id interface{} // 编号
|
||||
}
|
||||
21
internal/model/do/system_log.go
Normal file
21
internal/model/do/system_log.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SystemLog is the golang structure of table shiningu_system_log for DAO operations like Where/Data.
|
||||
type SystemLog struct {
|
||||
g.Meta `orm:"table:shiningu_system_log, do:true"`
|
||||
Id interface{} // 主键
|
||||
Uid interface{} // 操作的用户
|
||||
Url interface{} // 当前访问的url
|
||||
Data interface{} // 操作数据
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
Ip interface{} // 当前ip地址
|
||||
}
|
||||
23
internal/model/do/system_report.go
Normal file
23
internal/model/do/system_report.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SystemReport is the golang structure of table shiningu_system_report for DAO operations like Where/Data.
|
||||
type SystemReport struct {
|
||||
g.Meta `orm:"table:shiningu_system_report, do:true"`
|
||||
Id interface{} //
|
||||
Rid interface{} // 举报id
|
||||
Uid interface{} // 举报人编号
|
||||
Type interface{} // 举报类型
|
||||
Desc interface{} // 举报正文
|
||||
CreatedAt *gtime.Time // 举报时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
Status interface{} // 处理状态
|
||||
}
|
||||
17
internal/model/do/system_setting.go
Normal file
17
internal/model/do/system_setting.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// SystemSetting is the golang structure of table shiningu_system_setting for DAO operations like Where/Data.
|
||||
type SystemSetting struct {
|
||||
g.Meta `orm:"table:shiningu_system_setting, do:true"`
|
||||
Name interface{} // 配置名称
|
||||
Value interface{} // 配置详情
|
||||
Type interface{} // 类型
|
||||
}
|
||||
18
internal/model/do/system_statistics.go
Normal file
18
internal/model/do/system_statistics.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// SystemStatistics is the golang structure of table shiningu_system_statistics for DAO operations like Where/Data.
|
||||
type SystemStatistics struct {
|
||||
g.Meta `orm:"table:shiningu_system_statistics, do:true"`
|
||||
Id interface{} // 流水号
|
||||
AppId interface{} // 应用编号
|
||||
Key interface{} // 唯一缓存key
|
||||
Data interface{} // 数据
|
||||
}
|
||||
Reference in New Issue
Block a user