2026-04-01 00:58:42 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type BrandQuestion struct {
|
|
|
|
|
ID int64
|
2026-04-09 14:43:20 +08:00
|
|
|
TenantID int64
|
|
|
|
|
BrandID int64
|
|
|
|
|
KeywordID int64
|
2026-04-01 00:58:42 +08:00
|
|
|
QuestionText string
|
2026-04-09 14:43:20 +08:00
|
|
|
Status string
|
2026-04-01 00:58:42 +08:00
|
|
|
CreatedAt time.Time
|
|
|
|
|
}
|