Versions in this module Expand all Collapse all v1 v1.0.0 Apr 14, 2020 Changes in this version + type Department struct + ID string + Name string + PreviousDepartment *Department + PreviousDepartmentID string + func (d *Department) GetID() string + func (d *Department) GetName() string + func (d *Department) GetPreviousDepartment() DepartmentModelInterface + type DepartmentModelInterface interface + GetID func() string + GetName func() string + GetPreviousDepartment func() DepartmentModelInterface + type Startup struct + type StartupInterface interface + type User struct + Department *Department + DepartmentID string + EXT int + Email string + ID string + Location string + QQ string + Username string + func (u *User) GetDepartment() DepartmentModelInterface + func (u *User) GetEXT() int + func (u *User) GetEmail() string + func (u *User) GetID() string + func (u *User) GetLocation() string + func (u *User) GetQQ() string + func (u *User) GetUserName() string + type UserModelInterface interface + GetDepartment func() DepartmentModelInterface + GetEXT func() int + GetEmail func() string + GetID func() string + GetLocation func() string + GetQQ func() string + GetUserName func() string