85 lines
2.0 KiB
Go
85 lines
2.0 KiB
Go
package unit_position
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
ee "simrs-vx/internal/domain/main-entities/employee"
|
|
eu "simrs-vx/internal/domain/main-entities/unit"
|
|
)
|
|
|
|
type CreateDto struct {
|
|
Unit_Id *uint16 `json:"unit_id" validate:"required"`
|
|
Code string `json:"code" validate:"maxLength=10;required"`
|
|
Name string `json:"name" validate:"maxLength=30;required"`
|
|
HeadStatus bool `json:"headStatus"`
|
|
Employee_Id *uint `json:"employee_id"`
|
|
}
|
|
|
|
type ReadListDto struct {
|
|
FilterDto
|
|
Includes string `json:"includes"`
|
|
Sort string `json:"sort"`
|
|
Pagination ecore.Pagination
|
|
}
|
|
|
|
type FilterDto struct {
|
|
Unit_Id *uint16 `json:"unit-id"`
|
|
Code string `json:"code"`
|
|
Name string `json:"name"`
|
|
HeadStatus *bool `json:"head-status"`
|
|
Employee_Id *uint `json:"employee-id"`
|
|
Search string `json:"search" gormhelper:"searchColumns=Code,Name"`
|
|
}
|
|
|
|
type ReadDetailDto struct {
|
|
Id uint16 `json:"id"`
|
|
Code *string `json:"code"`
|
|
}
|
|
|
|
type UpdateDto struct {
|
|
Id uint16 `json:"id"`
|
|
CreateDto
|
|
}
|
|
|
|
type DeleteDto struct {
|
|
Id uint16 `json:"id"`
|
|
}
|
|
|
|
type MetaDto struct {
|
|
PageNumber int `json:"page_number"`
|
|
PageSize int `json:"page_size"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type ResponseDto struct {
|
|
ecore.SmallMain
|
|
Unit_Id *uint16 `json:"unit_id"`
|
|
Unit *eu.Unit `json:"unit,omitempty"`
|
|
Code string `json:"code"`
|
|
Name string `json:"name"`
|
|
HeadStatus bool `json:"headStatus"`
|
|
Employee_Id *uint `json:"employee_id"`
|
|
Employee *ee.Employee `json:"employee,omitempty"`
|
|
}
|
|
|
|
func (d UnitPosition) ToResponse() ResponseDto {
|
|
resp := ResponseDto{
|
|
Unit_Id: d.Unit_Id,
|
|
Unit: d.Unit,
|
|
Code: d.Code,
|
|
Name: d.Name,
|
|
HeadStatus: d.HeadStatus,
|
|
Employee_Id: d.Employee_Id,
|
|
Employee: d.Employee,
|
|
}
|
|
resp.SmallMain = d.SmallMain
|
|
return resp
|
|
}
|
|
|
|
func ToResponseList(data []UnitPosition) []ResponseDto {
|
|
resp := make([]ResponseDto, len(data))
|
|
for i, u := range data {
|
|
resp[i] = u.ToResponse()
|
|
}
|
|
return resp
|
|
}
|