高级排程
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.

16 lines
332 B

package service
import base_model "LAPP_AS/models/base"
// 人员技能对象
type SkillSrv struct{
SkillId string
Skilltab base_model.Skill
PersonDict map[int]*PersonSrv
}
func(ss *SkillSrv)Create(skilltab base_model.Skill){
ss.SkillId = skilltab.SkillId
ss.Skilltab = skilltab
ss.PersonDict = make(map[int]*PersonSrv)
}