feat(Go-Tool):
2020/12/31:新增项目案例(角色技能树)
2020/12/31: 修改diliver包结构
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* @Author : huangzj
|
||||
* @Time : 2020/12/29 15:08
|
||||
* @Description:
|
||||
*/
|
||||
|
||||
package model
|
||||
|
||||
type Counsellor struct {
|
||||
Id int
|
||||
Name string
|
||||
Skill []*Skill
|
||||
}
|
||||
|
||||
type Skill struct {
|
||||
Id int
|
||||
Level int
|
||||
Description string
|
||||
}
|
||||
Reference in New Issue
Block a user