user_group.go 155 B

12345678910111213
  1. package models
  2. import "time"
  3. // UserGroup model
  4. type UserGroup struct {
  5. Id int64
  6. OrgId int64
  7. Name string
  8. Created time.Time
  9. Updated time.Time
  10. }