Files

20 lines
239 B
Go
Raw Permalink Normal View History

2020-12-31 14:25:25 +08:00
/*
* @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
}