Versions in this module Expand all Collapse all v1 v1.3.9 May 20, 2024 v1.3.8 May 1, 2024 v1.3.7 Apr 29, 2024 v1.3.6 Apr 22, 2024 v1.3.5 Apr 21, 2024 v1.3.4 Mar 24, 2024 v1.3.3 Jan 21, 2024 Changes in this version + const PostCategoryField_Code + const PostCategoryField_Id + const PostCategoryField_IsOn + const PostCategoryField_Name + const PostCategoryField_Order + const PostCategoryField_State + const PostCategoryStateDisabled + const PostCategoryStateEnabled + const PostField_Body + const PostField_CategoryId + const PostField_CreatedAt + const PostField_Id + const PostField_IsPublished + const PostField_ProductCode + const PostField_PublishedAt + const PostField_State + const PostField_Subject + const PostField_Type + const PostField_Url + const PostStateDisabled + const PostStateEnabled + type Post struct + Body string + CategoryId uint32 + CreatedAt uint64 + Id uint32 + IsPublished bool + ProductCode string + PublishedAt uint64 + State uint8 + Subject string + Type string + Url string + type PostCategory struct + Code string + Id uint32 + IsOn bool + Name string + Order uint32 + State uint8 + type PostCategoryDAO dbs.DAO + var SharedPostCategoryDAO *PostCategoryDAO + func NewPostCategoryDAO() *PostCategoryDAO + func (this *PostCategoryDAO) DisablePostCategory(tx *dbs.Tx, categoryId int64) error + func (this *PostCategoryDAO) EnablePostCategory(tx *dbs.Tx, categoryId int64) error + func (this *PostCategoryDAO) FindEnabledPostCategory(tx *dbs.Tx, categoryId int64) (*PostCategory, error) + func (this *PostCategoryDAO) FindPostCategoryName(tx *dbs.Tx, categoryId int64) (string, error) + type PostCategoryOperator struct + Code any + Id any + IsOn any + Name any + Order any + State any + func NewPostCategoryOperator() *PostCategoryOperator + type PostDAO dbs.DAO + var SharedPostDAO *PostDAO + func NewPostDAO() *PostDAO + func (this *PostDAO) DisablePost(tx *dbs.Tx, postId int64) error + func (this *PostDAO) EnablePost(tx *dbs.Tx, postId int64) error + func (this *PostDAO) FindEnabledPost(tx *dbs.Tx, postId int64) (*Post, error) + type PostOperator struct + Body any + CategoryId any + CreatedAt any + Id any + IsPublished any + ProductCode any + PublishedAt any + State any + Subject any + Type any + Url any + func NewPostOperator() *PostOperator