2026-04-01 00:58:42 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type Brand struct {
|
|
|
|
|
ID int64
|
|
|
|
|
TenantID int64
|
|
|
|
|
Name string
|
2026-04-02 11:38:08 +08:00
|
|
|
Website *string
|
2026-04-01 00:58:42 +08:00
|
|
|
Description *string
|
|
|
|
|
Status string
|
|
|
|
|
CreatedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
|
|
|
|
}
|