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

  1. package service
  2. import base_model "LAPP_AS/models/base"
  3. // 人员技能对象
  4. type SkillSrv struct{
  5. SkillId string
  6. Skilltab base_model.Skill
  7. PersonDict map[int]*PersonSrv
  8. }
  9. func(ss *SkillSrv)Create(skilltab base_model.Skill){
  10. ss.SkillId = skilltab.SkillId
  11. ss.Skilltab = skilltab
  12. ss.PersonDict = make(map[int]*PersonSrv)
  13. }