You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
// ================================================================================= |
|
// 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" |
|
) |
|
|
|
// GameLoginUrl is the golang structure of table game_login_url for DAO operations like Where/Data. |
|
type GameLoginUrl struct { |
|
g.Meta `orm:"table:game_login_url, do:true"` |
|
Id interface{} // 1000+为外网id |
|
Host interface{} // |
|
Port interface{} // |
|
State interface{} // 服务器状态,1-正常,2-维护,3-白名单ip优先加渠道,4-黑名单渠道优先 |
|
Recommend interface{} // 推荐,1-推荐,0-不推荐 |
|
Name interface{} // 名称 |
|
Difficulty interface{} // 难度,1-简单,2-困难 |
|
RechargeHost interface{} // |
|
RechargePort interface{} // |
|
Area interface{} // 区服 |
|
IsShow interface{} // 1-可见,0-不可见 |
|
Channel interface{} // 固定渠道 |
|
CDate *gtime.Time // 创建时间-用于排序 |
|
GameDbUrl interface{} // 数据库地址 |
|
GameDbName interface{} // 数据库名称 |
|
Platform interface{} // 平台-充值 |
|
InnerIp interface{} // 内外地址 |
|
CreateTime *gtime.Time // 开服时间-用于服务器时间 |
|
Remark interface{} // 备注名称 |
|
IsNew interface{} // |
|
Sort interface{} // 后台排序 |
|
}
|
|
|