18 lines
405 B
Go
18 lines
405 B
Go
package base
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
)
|
|
|
|
type Basic struct {
|
|
ecore.SmallMain // adjust this according to the needs
|
|
Infra_Id *uint16 `json:"infra_id"`
|
|
Unit_Id *uint16 `json:"unit_id"`
|
|
Specialist_Id *uint16 `json:"specialist_id"`
|
|
Subspecialist_Id *uint16 `json:"subspecialist_id"`
|
|
}
|
|
|
|
func (Basic) TableName() string {
|
|
return "Room"
|
|
}
|