16 lines
284 B
Go
16 lines
284 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Owner struct {
|
||
|
|
Owner_id uint `gorm:"primaryKey"`
|
||
|
|
PhoneNumber string
|
||
|
|
FirstName string
|
||
|
|
LastName string
|
||
|
|
NationalCode string
|
||
|
|
Created_at time.Time
|
||
|
|
Modified_at time.Time
|
||
|
|
Modified_by string
|
||
|
|
Is_removed bool `gorm:"default:false"`
|
||
|
|
}
|