| 123456789101112131415161718192021222324252627282930 |
- package task
- type GamePortOption struct {
- Id int
- ChannelName string
- }
- type LoginTypeOption struct {
- Id int
- LoginName string
- }
- type AccountTypeOption struct {
- Id int
- TypeName string
- }
- type GameListOption struct {
- Id int `json:"game_id"`
- GameName string `json:"game_name"`
- }
- type Option struct {
- GamePortOptions []GamePortOption `json:"game_port"`
- LoginTypeOptions []LoginTypeOption `json:"login_type"`
- AccountTypeOptions []AccountTypeOption `json:"account_type"`
- GameListOptions []GameListOption `json:"game_list"`
- }
|