| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package models
- import (
- "errors"
- "time"
- )
- // Typed errors
- var (
- ErrOrgNotFound = errors.New("Organization not found")
- )
- type Org struct {
- Id int64
- Version int
- Name string
- Created time.Time
- Updated time.Time
- }
- // ---------------------
- // COMMANDS
- type CreateOrgCommand struct {
- Name string `json:"name" binding:"Required"`
- // initial admin user for account
- UserId int64 `json:"-"`
- Result Org `json:"-"`
- }
- type DeleteOrgCommand struct {
- Id int64
- }
- type UpdateOrgCommand struct {
- Name string `json:"name" binding:"Required"`
- OrgId int64 `json:"-"`
- }
- type GetOrgByIdQuery struct {
- Id int64
- Result *Org
- }
- type GetOrgByNameQuery struct {
- Name string
- Result *Org
- }
- type GetOrgListQuery struct {
- Result []*Org
- }
- type OrgDTO struct {
- Id int64 `json:"id"`
- Name string `json:"name"`
- }
- type UserOrgDTO struct {
- OrgId int64 `json:"orgId"`
- Name string `json:"name"`
- Role RoleType `json:"role"`
- }
|