19 lines
819 B
Go
19 lines
819 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type SalesAgents struct {
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
|
Name string `json:"name" gorm:"type:varchar"`
|
|
JobTitle *string `json:"job_title" gorm:"type:varchar"`
|
|
Phone *string `json:"phone" gorm:"type:varchar"`
|
|
AgentType *string `json:"agent_type" gorm:"type:text"` // JSON array stored as text
|
|
ProfilePicturePath *string `json:"profile_picture_path" gorm:"type:varchar"`
|
|
StatusId *int `json:"status_id" gorm:"type:int4;default:1"`
|
|
IsActive *bool `json:"is_active" gorm:"type:bool;default:true"`
|
|
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
|
|
}
|