Files
simrsx-be/internal/domain/main-entities/mcu-src-category/entity.go
T
munawwirul_jamal e69fe7bbb1 feat/trx-order: mcu
- added inlcude on the McuOrder
- reuse deleted data on the McuOrderItem
- added scope on the McuOrder
2025-11-01 16:19:47 +07:00

14 lines
467 B
Go

package division
import (
ecore "simrs-vx/internal/domain/base-entities/core"
ere "simrs-vx/internal/domain/references/encounter"
)
type McuSrcCategory struct {
ecore.SmallMain // adjust this according to the needs
Code string `json:"code" gorm:"unique;size:20"`
Name string `json:"name" gorm:"size:50"`
Scope_Code *ere.CheckupScopeCode `json:"scope_code" gorm:"index;size:10"`
}