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.
17 lines
490 B
17 lines
490 B
package region |
|
|
|
type Region struct { |
|
Rid int64 `json:"tid"` |
|
Reid int64 `json:"reid"` |
|
Name string `json:"name"` |
|
Logo string `json:"logo"` |
|
Goto string `json:"goto"` |
|
Param string `json:"param"` |
|
Rank string `json:"-"` |
|
Plat int8 `json:"-"` |
|
Build int `json:"-"` |
|
Condition string `json:"-"` |
|
Area string `json:"-"` |
|
Language string `json:"-"` |
|
Children []*Region `json:"children,omitempty"` |
|
}
|
|
|