31 lines
1.7 KiB
Go
31 lines
1.7 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
type IdentityCard struct {
|
|
ID string `gorm:"primaryKey;type:uuid;default:uuid_generate_v4();unique;not null" json:"id"`
|
|
UserID string `gorm:"not null" json:"userId"`
|
|
User User `gorm:"foreignKey:UserID;constraint:OnUpdate:CASCADE,OnDelete:CASCADE;" json:"user"`
|
|
Identificationumber string `gorm:"not null" json:"identificationumber"`
|
|
Fullname string `gorm:"not null" json:"fullname"`
|
|
Placeofbirth string `gorm:"not null" json:"placeofbirth"`
|
|
Dateofbirth string `gorm:"not null" json:"dateofbirth"`
|
|
Gender string `gorm:"not null" json:"gender"`
|
|
BloodType string `gorm:"not null" json:"bloodtype"`
|
|
Province string `gorm:"not null" json:"province"`
|
|
District string `gorm:"not null" json:"district"`
|
|
SubDistrict string `gorm:"not null" json:"subdistrict"`
|
|
Hamlet string `gorm:"not null" json:"hamlet"`
|
|
Village string `gorm:"not null" json:"village"`
|
|
Neighbourhood string `gorm:"not null" json:"neighbourhood"`
|
|
PostalCode string `gorm:"not null" json:"postalcode"`
|
|
Religion string `gorm:"not null" json:"religion"`
|
|
Maritalstatus string `gorm:"not null" json:"maritalstatus"`
|
|
Job string `gorm:"not null" json:"job"`
|
|
Citizenship string `gorm:"not null" json:"citizenship"`
|
|
Validuntil string `gorm:"not null" json:"validuntil"`
|
|
Cardphoto string `gorm:"not null" json:"cardphoto"`
|
|
CreatedAt time.Time `gorm:"default:current_timestamp" json:"createdAt"`
|
|
UpdatedAt time.Time `gorm:"default:current_timestamp" json:"updatedAt"`
|
|
}
|