Files
simrsx-be/internal/domain/main-entities/pharmacy-company/entity.go
T
2025-08-25 17:28:14 +07:00

13 lines
346 B
Go

package pharmacycompany
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type PharmacyCompany struct {
ecore.Main // adjust this according to the needs
Code string `json:"code" gorm:"unique;size:20"`
Name string `json:"name" gorm:"size:100"`
Regency_Code string `json:"regency_code" gorm:"size:4"`
}