Files
simrsx-be/internal/domain/main-entities/laborant/entity.go
T

13 lines
326 B
Go

package laborant
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type Laborant struct {
ecore.SmallMain // adjust this according to the needs
Code string `json:"code" gorm:"unique;size:10"`
Name string `json:"name" gorm:"size:50"`
Parent_Id *int16 `json:"parent_id"`
}