14 lines
418 B
Go
14 lines
418 B
Go
package personcontact
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
erp "simrs-vx/internal/domain/references/person"
|
|
)
|
|
|
|
type PersonContact struct {
|
|
ecore.Main // adjust this according to the needs
|
|
Person_Id uint `json:"person_id"`
|
|
Type_Code erp.ContactTypeCode `json:"type_code" gorm:"size:15"`
|
|
Value string `json:"value" gorm:"size:100"`
|
|
}
|