21 lines
531 B
Go
21 lines
531 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ArticleTemplate struct {
|
||
|
|
ID int64
|
||
|
|
Scope string
|
||
|
|
TenantID *int64
|
||
|
|
OriginType string
|
||
|
|
TemplateKey string
|
||
|
|
TemplateName string
|
||
|
|
PromptTemplate *string
|
||
|
|
PromptVisibility string
|
||
|
|
ProtectedPromptAssetKey *string
|
||
|
|
CardConfigJSON map[string]interface{}
|
||
|
|
Status string
|
||
|
|
VersionNo int
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|