19 lines
872 B
Go
19 lines
872 B
Go
package installation_position
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
ee "simrs-vx/internal/domain/main-entities/employee"
|
|
ei "simrs-vx/internal/domain/main-entities/installation"
|
|
)
|
|
|
|
type InstallationPosition struct {
|
|
ecore.SmallMain // adjust this according to the needs
|
|
Installation_Id *uint16 `json:"installation_id" gorm:"not null"`
|
|
Installation *ei.Installation `json:"installation,omitempty" gorm:"foreignKey:Installation_Id;references:Id"`
|
|
Code string `json:"code" gorm:"unique;size:10;not null"`
|
|
Name string `json:"name" gorm:"size:30;not null"`
|
|
HeadStatus bool `json:"headStatus"`
|
|
Employee_Id *uint `json:"employee_id"`
|
|
Employee *ee.Employee `json:"employee,omitempty" gorm:"foreignKey:Employee_Id;references:Id"`
|
|
}
|