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

12 lines
273 B
Go

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