19 lines
328 B
Go
19 lines
328 B
Go
package entities
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"gorm.io/gorm"
|
|
"time"
|
|
)
|
|
|
|
type Client struct {
|
|
gorm.Model
|
|
ID uuid.UUID `gorm:"type:uuid;primaryKey;default:uuid_generate_v4()"`
|
|
Name string
|
|
Abbreviation string
|
|
Website string
|
|
PhoneNumber string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|