17 lines
309 B
Go
17 lines
309 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Article struct {
|
|
ID int64
|
|
TenantID int64
|
|
BrandID *int64
|
|
SourceType string
|
|
TemplateID *int64
|
|
CurrentVersionID *int64
|
|
GenerateStatus string
|
|
PublishStatus string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|