19 lines
319 B
Go
19 lines
319 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import (
|
||
|
|
"encoding/json"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Competitor struct {
|
||
|
|
ID int64
|
||
|
|
TenantID int64
|
||
|
|
BrandID int64
|
||
|
|
Name string
|
||
|
|
Website *string
|
||
|
|
Description *string
|
||
|
|
ProductLinesJSON json.RawMessage
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|