Files
simrsx-be/internal/domain/main-entities/mcu-src/entity.go

13 lines
372 B
Go

package mcusrc
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type McuSrc struct {
ecore.SmallMain // adjust this according to the needs
Code string `json:"code" gorm:"unique;size:20"`
Name string `json:"name" gorm:"size:50"`
CheckupCategory_Code *string `json:"checkupCategory_code" gorm:"size:20"`
}