Files
root 111498a65f feat: Refactor template handling and brand management
- Removed schema_json from article templates and related queries.
- Updated brand service to include website field in requests and responses.
- Simplified template wizard view by eliminating unused schema fields and related logic.
- Added tests for ark text format handling.
- Created migrations for dropping schema_json and adding website to brands.
2026-04-02 11:38:08 +08:00

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
}