add uom, item, itemprice, infra, medicinegroup, medicinemethod, mscusrccategory, mcusrc

This commit is contained in:
dpurbosakti
2025-08-27 14:40:56 +07:00
parent ad41ac0bd8
commit c1d14f3770
25 changed files with 845 additions and 64 deletions

No files matched your search

@@ -0,0 +1,11 @@
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"`
}