mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 20:23:52 +08:00
版本预发布
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/encoding/gjson"
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
@@ -21,22 +22,20 @@ type AdminMember struct {
|
||||
Salt interface{} // 密码盐
|
||||
AuthKey interface{} // 授权令牌
|
||||
PasswordResetToken interface{} // 密码重置令牌
|
||||
Balance interface{} // 余额
|
||||
Avatar interface{} // 头像
|
||||
Sex interface{} // 性别
|
||||
Qq interface{} // qq
|
||||
Email interface{} // 邮箱
|
||||
Mobile interface{} // 手机号码
|
||||
Birthday *gtime.Time // 生日
|
||||
ProvinceId interface{} // 省编码
|
||||
CityId interface{} // 城市编码
|
||||
CountyId interface{} // 区域编码
|
||||
Address interface{} // 联系地址
|
||||
VisitCount interface{} // 访问次数
|
||||
LastTime interface{} // 最后一次登录时间
|
||||
LastIp interface{} // 最后一次登录ip
|
||||
Pid interface{} // 上级管理员ID
|
||||
Level interface{} // 关系树等级
|
||||
Tree interface{} // 关系树
|
||||
Cash *gjson.Json // 提现配置
|
||||
LastActiveAt *gtime.Time // 最后活跃时间
|
||||
Remark interface{} // 备注
|
||||
Status interface{} // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/encoding/gjson"
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
@@ -15,12 +16,15 @@ type AdminNotice struct {
|
||||
Id interface{} // 公告ID
|
||||
Title interface{} // 公告标题
|
||||
Type interface{} // 公告类型
|
||||
Tag interface{} // 标签
|
||||
Content interface{} // 公告内容
|
||||
Receiver interface{} // 接收者
|
||||
Reader interface{} // 已读人
|
||||
Receiver *gjson.Json // 接收者
|
||||
Remark interface{} // 备注
|
||||
Sort interface{} // 排序
|
||||
Status interface{} // 公告状态
|
||||
CreatedBy interface{} // 发送人
|
||||
UpdatedBy interface{} // 修改人
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 删除时间
|
||||
}
|
||||
|
||||
21
server/internal/model/do/admin_notice_read.go
Normal file
21
server/internal/model/do/admin_notice_read.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// AdminNoticeRead is the golang structure of table hg_admin_notice_read for DAO operations like Where/Data.
|
||||
type AdminNoticeRead struct {
|
||||
g.Meta `orm:"table:hg_admin_notice_read, do:true"`
|
||||
Id interface{} // 记录ID
|
||||
NoticeId interface{} // 公告ID
|
||||
MemberId interface{} // 会员ID
|
||||
Clicks interface{} // 已读次数
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
CreatedAt *gtime.Time // 阅读时间
|
||||
}
|
||||
25
server/internal/model/do/sys_ems_log.go
Normal file
25
server/internal/model/do/sys_ems_log.go
Normal 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"
|
||||
)
|
||||
|
||||
// SysEmsLog is the golang structure of table hg_sys_ems_log for DAO operations like Where/Data.
|
||||
type SysEmsLog struct {
|
||||
g.Meta `orm:"table:hg_sys_ems_log, do:true"`
|
||||
Id interface{} // 主键
|
||||
Event interface{} // 事件
|
||||
Email interface{} // 邮箱地址,多个用;隔开
|
||||
Code interface{} // 验证码
|
||||
Times interface{} // 验证次数
|
||||
Content interface{} // 邮件内容
|
||||
Ip interface{} // ip地址
|
||||
Status interface{} // 状态(1未验证,2已验证)
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
@@ -15,6 +15,7 @@ type SysGenCodes struct {
|
||||
g.Meta `orm:"table:hg_sys_gen_codes, do:true"`
|
||||
Id interface{} // 生成ID
|
||||
GenType interface{} // 生成类型
|
||||
GenTemplate interface{} // 生成模板
|
||||
VarName interface{} // 实体命名
|
||||
Options *gjson.Json // 配置选项
|
||||
DbName interface{} // 数据库名称
|
||||
|
||||
@@ -19,6 +19,7 @@ type SysGenCurdDemo struct {
|
||||
Content interface{} // 内容
|
||||
Image interface{} // 单图
|
||||
Attachfile interface{} // 附件
|
||||
CityId interface{} // 所在城市
|
||||
Switch interface{} // 显示开关
|
||||
Sort interface{} // 排序
|
||||
Status interface{} // 状态
|
||||
|
||||
@@ -19,6 +19,7 @@ type SysLoginLog struct {
|
||||
Username interface{} // 用户名
|
||||
Response *gjson.Json // 响应数据
|
||||
LoginAt *gtime.Time // 登录时间
|
||||
LoginIp interface{} // 登录IP
|
||||
ErrMsg interface{} // 错误提示
|
||||
Status interface{} // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
|
||||
@@ -39,6 +39,7 @@ type Test struct {
|
||||
Mobile interface{} // 手机号码
|
||||
Hobby *gjson.Json // 爱好
|
||||
Channel interface{} // 渠道
|
||||
CityId interface{} // 所在城市
|
||||
Pid interface{} // 上级ID
|
||||
Level interface{} // 树等级
|
||||
Tree interface{} // 关系树
|
||||
|
||||
Reference in New Issue
Block a user