model

package
v0.0.0-...-b70bbfa Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 12, 2024 License: BSD-3-Clause Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type OrganizationCreateReq

type OrganizationCreateReq struct {
	Title string `json:"title"`
}

OrganizationCreateReq запрос на создание организации.

type OrganizationCreateResp

type OrganizationCreateResp struct {
	ID int64 `json:"id"`
}

OrganizationCreateResp ответ на создание организации.

type OrganizationDao

type OrganizationDao struct {
	CreatedAt time.Time
	Username  string
	Title     string
	ID        int64
}

OrganizationDao организация в базе данных.

func (OrganizationDao) ToDto

func (o OrganizationDao) ToDto() OrganizationDto

ToDto конвертирует OrganizationDao в OrganizationDto.

type OrganizationDto

type OrganizationDto struct {
	Title     string    `json:"title"`
	ID        int64     `json:"id"`
	CreatedAt time.Time `json:"created_at"`
}

OrganizationDto организация для передачи внутри сервиса.

type OrganizationUpdateReq

type OrganizationUpdateReq struct {
	Title string `json:"title"`
	ID    int64  `json:"id"`
}

OrganizationUpdateReq запрос на обновление названия организации.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL