13 lines
346 B
Go
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"`
|
|
}
|