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.
26 lines
1.0 KiB
26 lines
1.0 KiB
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package do |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/frame/g" |
|
) |
|
|
|
// 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{} // 100+为外网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{} // 固定渠道 |
|
}
|
|
|