Files
simrsx-be/internal/domain/main-entities/person-address/entity.go
T

15 lines
423 B
Go

package personaddress
import (
ecore "simrs-vx/internal/domain/base-entities/core"
)
type PersonAddress struct {
ecore.Main // adjust this according to the needs
Person_Id uint `json:"person_id"`
Address string `json:"address" gorm:"size:150"`
Rt string `json:"rt" gorm:"size:2"`
Rw string `json:"rw" gorm:"size:2"`
Village_Code string `json:"village_code" gorm:"size:10"`
}