dao

package
v0.28.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 16, 2022 License: AGPL-3.0, AGPL-3.0-only Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const TableNameAccessToken = "chii_oauth_access_tokens"
View Source
const TableNameApp = "chii_apps"
View Source
const TableNameCast = "chii_crt_cast_index"
View Source
const TableNameCharacter = "chii_characters"
View Source
const TableNameCharacterComment = "chii_crt_comments"
View Source
const TableNameCharacterSubjects = "chii_crt_subject_index"
View Source
const TableNameEpCollection = "chii_ep_status"
View Source
const TableNameEpisode = "chii_episodes"
View Source
const TableNameEpisodeComment = "chii_ep_comments"
View Source
const TableNameFriend = "chii_friends"
View Source
const TableNameGroup = "chii_groups"
View Source
const TableNameGroupMember = "chii_group_members"
View Source
const TableNameGroupTopic = "chii_group_topics"
View Source
const TableNameGroupTopicComment = "chii_group_posts"
View Source
const TableNameIndex = "chii_index"
View Source
const TableNameIndexComment = "chii_index_comments"
View Source
const TableNameIndexSubject = "chii_index_related"
View Source
const TableNameMember = "chii_members"
View Source
const TableNameMemberField = "chii_memberfields"
View Source
const TableNameOAuthClient = "chii_oauth_clients"
View Source
const TableNamePerson = "chii_persons"
View Source
const TableNamePersonComment = "chii_prsn_comments"
View Source
const TableNamePersonField = "chii_person_fields"
View Source
const TableNamePersonSubjects = "chii_person_cs_index"
View Source
const TableNameRevisionHistory = "chii_rev_history"
View Source
const TableNameRevisionText = "chii_rev_text"
View Source
const TableNameSubject = "chii_subjects"
View Source
const TableNameSubjectCollection = "chii_subject_interests"
View Source
const TableNameSubjectField = "chii_subject_fields"
View Source
const TableNameSubjectRelation = "chii_subject_relations"
View Source
const TableNameSubjectRevision = "chii_subject_revisions"
View Source
const TableNameSubjectTopic = "chii_subject_topics"
View Source
const TableNameSubjectTopicComment = "chii_subject_posts"
View Source
const TableNameTimeLine = "chii_timeline"
View Source
const TableNameUserGroup = "chii_usergroup"
View Source
const TableNameWebSession = "chii_os_web_sessions"

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessToken added in v0.18.0

type AccessToken struct {
	ID          uint32    `gorm:"column:id;type:mediumint(8);primaryKey;autoIncrement:true"`
	Type        uint8     `gorm:"column:type;type:tinyint(1) unsigned;not null"`
	AccessToken string    `gorm:"column:access_token;type:varchar(40);not null"`
	ClientID    string    `gorm:"column:client_id;type:varchar(80);not null"`
	UserID      string    `gorm:"column:user_id;type:varchar(80)"`
	ExpiredAt   time.Time `gorm:"column:expires;type:timestamp;not null;default:CURRENT_TIMESTAMP"`
	Scope       *string   `gorm:"column:scope;type:varchar(4000)"`
	Info        []byte    `gorm:"column:info;type:varchar(255);not null"`
}

AccessToken mapped from table <chii_oauth_access_tokens>

func (*AccessToken) TableName added in v0.18.0

func (*AccessToken) TableName() string

TableName AccessToken's table name

type App added in v0.19.0

type App struct {
	ID          uint32       `gorm:"column:app_id;type:mediumint(8);primaryKey;autoIncrement:true"`
	Type        uint8        `gorm:"column:app_type;type:tinyint(1);not null"`
	Creator     model.UserID `gorm:"column:app_creator;type:mediumint(8);not null"`
	Name        string       `gorm:"column:app_name;type:varchar(255);not null"`
	Description string       `gorm:"column:app_desc;type:mediumtext;not null"`
	URL         string       `gorm:"column:app_url;type:varchar(2000);not null"`
	Collects    int32        `gorm:"column:app_collects;type:mediumint(8);not null"`
	Status      bool         `gorm:"column:app_status;type:tinyint(1);not null"`
	CreatedTime int32        `gorm:"column:app_timestamp;type:int(10);not null"`
	UpdatedTime int32        `gorm:"column:app_lasttouch;type:int(10);not null"`
	Ban         bool         `gorm:"column:app_ban;type:tinyint(1);not null"`
}

App mapped from table <chii_apps>

func (*App) TableName added in v0.19.0

func (*App) TableName() string

TableName App's table name

type Cast

type Cast struct {
	CharacterID   model.CharacterID `gorm:"column:crt_id;type:mediumint(9) unsigned;primaryKey"`
	PersonID      model.PersonID    `gorm:"column:prsn_id;type:mediumint(9) unsigned;primaryKey"`
	SubjectID     model.SubjectID   `gorm:"column:subject_id;type:mediumint(9) unsigned;primaryKey"`
	SubjectTypeID uint8             `gorm:"column:subject_type_id;type:tinyint(3) unsigned;not null"` // 根据人物归类查询角色,动画,书籍,游戏
	Summary       string            `gorm:"column:summary;type:varchar(255);not null"`                // 幼年,男乱马,女乱马,变身形态,少女形态。。
	Character     Character         `gorm:"foreignKey:crt_id;references:crt_id" json:"character"`
	Subject       Subject           `gorm:"foreignKey:subject_id;references:subject_id" json:"subject"`
	Person        Person            `gorm:"foreignKey:prsn_id;references:prsn_id" json:"person"`
}

Cast mapped from table <chii_crt_cast_index>

func (*Cast) TableName

func (*Cast) TableName() string

TableName Cast's table name

type Character

type Character struct {
	ID       model.CharacterID `gorm:"column:crt_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Name     string            `gorm:"column:crt_name;type:varchar(255);not null"`
	Role     uint8             `gorm:"column:crt_role;type:tinyint(4) unsigned;not null"` // 角色,机体,组织。。
	Infobox  string            `gorm:"column:crt_infobox;type:mediumtext;not null"`
	Summary  string            `gorm:"column:crt_summary;type:mediumtext;not null"`
	Img      string            `gorm:"column:crt_img;type:varchar(255);not null"`
	Comment  uint32            `gorm:"column:crt_comment;type:mediumint(9) unsigned;not null"`
	Collects uint32            `gorm:"column:crt_collects;type:mediumint(8) unsigned;not null"`
	Dateline uint32            `gorm:"column:crt_dateline;type:int(10) unsigned;not null"`
	Lastpost uint32            `gorm:"column:crt_lastpost;type:int(11) unsigned;not null"`
	Lock     int8              `gorm:"column:crt_lock;type:tinyint(4);not null"`
	ImgAnidb string            `gorm:"column:crt_img_anidb;type:varchar(255);not null"`         // Deprecated
	AnidbID  uint32            `gorm:"column:crt_anidb_id;type:mediumint(8) unsigned;not null"` // Deprecated
	Ban      uint8             `gorm:"column:crt_ban;type:tinyint(3) unsigned;not null"`
	Redirect model.CharacterID `gorm:"column:crt_redirect;type:int(10) unsigned;not null"`
	Nsfw     bool              `gorm:"column:crt_nsfw;type:tinyint(1) unsigned;not null"`
	Fields   PersonField       `gorm:"foreignKey:crt_id;polymorphic:Owner;polymorphicValue:crt" json:"fields"`
}

Character mapped from table <chii_characters>

func (*Character) TableName

func (*Character) TableName() string

TableName Character's table name

type CharacterComment added in v0.22.0

type CharacterComment struct {
	ID          uint32 `gorm:"column:crt_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:crt_pst_mid;type:mediumint(8) unsigned;not null"` // 关联人物ID
	UID         uint32 `gorm:"column:crt_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:crt_pst_related;type:mediumint(8) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:crt_pst_dateline;type:int(10) unsigned;not null"`
	Content     string `gorm:"column:crt_pst_content;type:mediumtext;not null"`
}

CharacterComment mapped from table <chii_crt_comments>

func (*CharacterComment) CommentID added in v0.22.0

func (c *CharacterComment) CommentID() model.CommentID

func (*CharacterComment) CreateAt added in v0.22.0

func (c *CharacterComment) CreateAt() time.Time

func (*CharacterComment) CreatorID added in v0.22.0

func (c *CharacterComment) CreatorID() model.UserID

func (*CharacterComment) GetContent added in v0.22.0

func (c *CharacterComment) GetContent() string

func (*CharacterComment) GetID added in v0.22.0

func (c *CharacterComment) GetID() model.CommentID

func (*CharacterComment) GetState added in v0.22.0

func (c *CharacterComment) GetState() uint8

func (*CharacterComment) GetTopicID added in v0.22.0

func (c *CharacterComment) GetTopicID() uint32

func (*CharacterComment) IsSubComment added in v0.22.0

func (c *CharacterComment) IsSubComment() bool

func (*CharacterComment) RelatedTo added in v0.22.0

func (c *CharacterComment) RelatedTo() model.CommentID

func (*CharacterComment) TableName added in v0.22.0

func (*CharacterComment) TableName() string

TableName CharacterComment's table name

type CharacterSubjects

type CharacterSubjects struct {
	CharacterID   model.CharacterID `gorm:"column:crt_id;type:mediumint(9) unsigned;primaryKey"`
	SubjectID     model.SubjectID   `gorm:"column:subject_id;type:mediumint(9) unsigned;primaryKey"`
	SubjectTypeID uint8             `gorm:"column:subject_type_id;type:tinyint(4) unsigned;not null"`
	CrtType       uint8             `gorm:"column:crt_type;type:tinyint(4) unsigned;not null"` // 主角,配角
	CtrAppearEps  string            `gorm:"column:ctr_appear_eps;type:mediumtext;not null"`    // 可选,角色出场的的章节
	CrtOrder      uint8             `gorm:"column:crt_order;type:tinyint(3) unsigned;not null"`
	Character     Character         `gorm:"foreignKey:crt_id;references:crt_id" json:"character"`
	Subject       Subject           `gorm:"foreignKey:subject_id;references:subject_id" json:"subject"`
}

CharacterSubjects mapped from table <chii_crt_subject_index>

func (*CharacterSubjects) TableName

func (*CharacterSubjects) TableName() string

TableName CharacterSubjects's table name

type EpCollection added in v0.23.0

type EpCollection struct {
	ID          uint32          `gorm:"column:ep_stt_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	UserID      model.UserID    `gorm:"column:ep_stt_uid;type:mediumint(8) unsigned;not null"`
	SubjectID   model.SubjectID `gorm:"column:ep_stt_sid;type:mediumint(8) unsigned;not null"`
	OnPrg       bool            `gorm:"column:ep_stt_on_prg;type:tinyint(1) unsigned;not null"`
	Status      []byte          `gorm:"column:ep_stt_status;type:mediumtext;not null"`
	UpdatedTime uint32          `gorm:"column:ep_stt_lasttouch;type:int(10) unsigned;not null"`
}

EpCollection mapped from table <chii_ep_status>

func (*EpCollection) TableName added in v0.23.0

func (*EpCollection) TableName() string

TableName EpCollection's table name

type Episode

type Episode struct {
	ID        model.EpisodeID `gorm:"column:ep_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	SubjectID model.SubjectID `gorm:"column:ep_subject_id;type:mediumint(8) unsigned;not null"`
	Sort      float32         `gorm:"column:ep_sort;type:float unsigned;not null"`
	Type      uint8           `gorm:"column:ep_type;type:tinyint(1) unsigned;not null"`
	Disc      uint8           `gorm:"column:ep_disc;type:tinyint(3) unsigned;not null"` // 碟片数
	Name      string          `gorm:"column:ep_name;type:varchar(80);not null"`
	NameCn    string          `gorm:"column:ep_name_cn;type:varchar(80);not null"`
	Rate      int8            `gorm:"column:ep_rate;type:tinyint(3);not null"`
	Duration  string          `gorm:"column:ep_duration;type:varchar(80);not null"`
	Airdate   string          `gorm:"column:ep_airdate;type:varchar(80);not null"`
	Online    string          `gorm:"column:ep_online;type:mediumtext;not null"`
	Comment   uint32          `gorm:"column:ep_comment;type:mediumint(8) unsigned;not null"`
	Resources uint32          `gorm:"column:ep_resources;type:mediumint(8) unsigned;not null"`
	Desc      string          `gorm:"column:ep_desc;type:mediumtext;not null"`
	Dateline  uint32          `gorm:"column:ep_dateline;type:int(10) unsigned;not null"`
	Lastpost  uint32          `gorm:"column:ep_lastpost;type:int(10) unsigned;not null"`
	Lock      uint8           `gorm:"column:ep_lock;type:tinyint(3) unsigned;not null"`
	Ban       uint8           `gorm:"column:ep_ban;type:tinyint(3) unsigned;not null"`
	Subject   Subject         `gorm:"foreignKey:ep_subject_id;references:subject_id" json:"subject"`
}

Episode mapped from table <chii_episodes>

func (*Episode) TableName

func (*Episode) TableName() string

TableName Episode's table name

type EpisodeComment added in v0.22.0

type EpisodeComment struct {
	ID          uint32 `gorm:"column:ep_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:ep_pst_mid;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:ep_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:ep_pst_related;type:mediumint(8) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:ep_pst_dateline;type:int(10) unsigned;not null"`
	Content     string `gorm:"column:ep_pst_content;type:mediumtext;not null"`
}

EpisodeComment mapped from table <chii_ep_comments>

func (*EpisodeComment) CommentID added in v0.22.0

func (c *EpisodeComment) CommentID() model.CommentID

func (*EpisodeComment) CreateAt added in v0.22.0

func (c *EpisodeComment) CreateAt() time.Time

func (*EpisodeComment) CreatorID added in v0.22.0

func (c *EpisodeComment) CreatorID() model.UserID

func (*EpisodeComment) GetContent added in v0.22.0

func (c *EpisodeComment) GetContent() string

func (*EpisodeComment) GetID added in v0.22.0

func (c *EpisodeComment) GetID() model.CommentID

func (*EpisodeComment) GetState added in v0.22.0

func (c *EpisodeComment) GetState() uint8

func (*EpisodeComment) GetTopicID added in v0.22.0

func (c *EpisodeComment) GetTopicID() uint32

func (*EpisodeComment) IsSubComment added in v0.22.0

func (c *EpisodeComment) IsSubComment() bool

func (*EpisodeComment) RelatedTo added in v0.22.0

func (c *EpisodeComment) RelatedTo() model.CommentID

func (*EpisodeComment) TableName added in v0.22.0

func (*EpisodeComment) TableName() string

TableName EpisodeComment's table name

type Friend added in v0.23.0

type Friend struct {
	UserID      model.UserID `gorm:"column:frd_uid;type:mediumint(8) unsigned;not null"`
	FriendID    model.UserID `gorm:"column:frd_fid;type:mediumint(8) unsigned;not null"`
	Grade       uint8        `gorm:"column:frd_grade;type:tinyint(3) unsigned;not null;default:1"`
	CreatedTime uint32       `gorm:"column:frd_dateline;type:int(10) unsigned;not null"`
	Description string       `gorm:"column:frd_description;type:char(255);not null"`
}

Friend mapped from table <chii_friends>

func (*Friend) TableName added in v0.23.0

func (*Friend) TableName() string

TableName Friend's table name

type Group added in v0.20.9

type Group struct {
	ID             model.GroupID `gorm:"column:grp_id;type:smallint(6) unsigned;primaryKey;autoIncrement:true"`
	Cat            uint16        `gorm:"column:grp_cat;type:smallint(6) unsigned;not null"`
	Name           string        `gorm:"column:grp_name;type:char(50);not null"`
	Title          string        `gorm:"column:grp_title;type:char(50);not null"`
	Icon           string        `gorm:"column:grp_icon;type:varchar(255);not null"`
	CreatorID      model.UserID  `gorm:"column:grp_creator;type:mediumint(8) unsigned;not null"`
	Topics         uint32        `gorm:"column:grp_topics;type:mediumint(8) unsigned;not null"`
	Posts          uint32        `gorm:"column:grp_posts;type:mediumint(8) unsigned;not null"`
	Members        uint32        `gorm:"column:grp_members;type:mediumint(8) unsigned;not null;default:1"`
	Description    string        `gorm:"column:grp_desc;type:text;not null"`
	LastPostedTime uint32        `gorm:"column:grp_lastpost;type:int(10) unsigned;not null"` // 目前永远是0
	CreatedTime    uint32        `gorm:"column:grp_builddate;type:int(10) unsigned;not null"`
	Accessible     uint8         `gorm:"column:grp_accessible;type:tinyint(1);not null;default:1"` // 可访问性
	Nsfw           bool          `gorm:"column:grp_nsfw;type:tinyint(1) unsigned;not null"`
}

Group mapped from table <chii_groups>

func (*Group) TableName added in v0.20.9

func (*Group) TableName() string

TableName Group's table name

type GroupMember added in v0.20.9

type GroupMember struct {
	UserID      model.UserID  `gorm:"column:gmb_uid;type:mediumint(8);primaryKey"`
	GroupID     model.GroupID `gorm:"column:gmb_gid;type:smallint(6);primaryKey"`
	Moderator   bool          `gorm:"column:gmb_moderator;type:tinyint(1);not null"`
	CreatedTime uint32        `gorm:"column:gmb_dateline;type:int(10) unsigned;not null"`
}

GroupMember mapped from table <chii_group_members>

func (*GroupMember) TableName added in v0.20.9

func (*GroupMember) TableName() string

TableName GroupMember's table name

type GroupTopic added in v0.22.0

type GroupTopic struct {
	ID          uint32 `gorm:"column:grp_tpc_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	GroupID     uint32 `gorm:"column:grp_tpc_gid;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:grp_tpc_uid;type:mediumint(8) unsigned;not null"`
	Title       string `gorm:"column:grp_tpc_title;type:varchar(80);not null"`
	CreatedTime uint32 `gorm:"column:grp_tpc_dateline;type:int(10) unsigned;not null"`
	UpdatedTime uint32 `gorm:"column:grp_tpc_lastpost;type:int(10) unsigned;not null"`
	Replies     uint32 `gorm:"column:grp_tpc_replies;type:mediumint(8) unsigned;not null"`
	State       uint8  `gorm:"column:grp_tpc_state;type:tinyint(1) unsigned;not null"`
	Display     uint8  `gorm:"column:grp_tpc_display;type:tinyint(1) unsigned;not null;default:1"`
}

GroupTopic mapped from table <chii_group_topics>

func (*GroupTopic) GetCreateTime added in v0.22.0

func (t *GroupTopic) GetCreateTime() time.Time

func (*GroupTopic) GetCreatorID added in v0.22.0

func (t *GroupTopic) GetCreatorID() uint32

func (*GroupTopic) GetDisplay added in v0.25.9

func (t *GroupTopic) GetDisplay() uint8

func (*GroupTopic) GetID added in v0.22.0

func (t *GroupTopic) GetID() uint32

func (*GroupTopic) GetParentID added in v0.24.1

func (t *GroupTopic) GetParentID() uint32

func (*GroupTopic) GetReplies added in v0.22.0

func (t *GroupTopic) GetReplies() uint32

func (*GroupTopic) GetState added in v0.22.0

func (t *GroupTopic) GetState() uint8

func (*GroupTopic) GetTitle added in v0.22.0

func (t *GroupTopic) GetTitle() string

func (*GroupTopic) GetUpdateTime added in v0.22.0

func (t *GroupTopic) GetUpdateTime() time.Time

func (*GroupTopic) TableName added in v0.22.0

func (*GroupTopic) TableName() string

TableName GroupTopic's table name

type GroupTopicComment added in v0.22.0

type GroupTopicComment struct {
	ID          uint32 `gorm:"column:grp_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:grp_pst_mid;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:grp_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:grp_pst_related;type:mediumint(8) unsigned;not null"` // 关联回复ID
	Content     string `gorm:"column:grp_pst_content;type:mediumtext;not null"`
	State       uint8  `gorm:"column:grp_pst_state;type:tinyint(1) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:grp_pst_dateline;type:int(10) unsigned;not null"`
}

GroupTopicComment mapped from table <chii_group_posts>

func (*GroupTopicComment) CommentID added in v0.22.0

func (c *GroupTopicComment) CommentID() model.CommentID

func (*GroupTopicComment) CreateAt added in v0.22.0

func (c *GroupTopicComment) CreateAt() time.Time

func (*GroupTopicComment) CreatorID added in v0.22.0

func (c *GroupTopicComment) CreatorID() model.UserID

func (*GroupTopicComment) GetContent added in v0.22.0

func (c *GroupTopicComment) GetContent() string

func (*GroupTopicComment) GetID added in v0.22.0

func (c *GroupTopicComment) GetID() model.CommentID

func (*GroupTopicComment) GetState added in v0.22.0

func (c *GroupTopicComment) GetState() uint8

func (*GroupTopicComment) GetTopicID added in v0.22.0

func (c *GroupTopicComment) GetTopicID() uint32

func (*GroupTopicComment) IsSubComment added in v0.22.0

func (c *GroupTopicComment) IsSubComment() bool

func (*GroupTopicComment) RelatedTo added in v0.22.0

func (c *GroupTopicComment) RelatedTo() model.CommentID

func (*GroupTopicComment) TableName added in v0.22.0

func (*GroupTopicComment) TableName() string

TableName GroupTopicComment's table name

type Index

type Index struct {
	ID           uint32       `gorm:"column:idx_id;type:mediumint(8);primaryKey;autoIncrement:true"` // 自动id
	Type         uint8        `gorm:"column:idx_type;type:tinyint(3) unsigned;not null"`
	Title        string       `gorm:"column:idx_title;type:varchar(80);not null"`                   // 标题
	Desc         string       `gorm:"column:idx_desc;type:mediumtext;not null"`                     // 简介
	ReplyCount   uint32       `gorm:"column:idx_replies;type:mediumint(8) unsigned;not null"`       // 回复数
	SubjectCount uint32       `gorm:"column:idx_subject_total;type:mediumint(8) unsigned;not null"` // 内含条目总数
	CollectCount uint32       `gorm:"column:idx_collects;type:mediumint(8);not null"`               // 收藏数
	Stats        string       `gorm:"column:idx_stats;type:mediumtext;not null"`
	CreatedTime  int32        `gorm:"column:idx_dateline;type:int(10);not null"` // 创建时间
	UpdatedTime  uint32       `gorm:"column:idx_lasttouch;type:int(10) unsigned;not null"`
	CreatorID    model.UserID `gorm:"column:idx_uid;type:mediumint(8);not null"` // 创建人UID
	Ban          bool         `gorm:"column:idx_ban;type:tinyint(1) unsigned;not null"`
}

Index mapped from table <chii_index>

func (*Index) TableName

func (*Index) TableName() string

TableName Index's table name

type IndexComment added in v0.22.0

type IndexComment struct {
	ID          uint32 `gorm:"column:idx_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:idx_pst_mid;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:idx_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:idx_pst_related;type:mediumint(8) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:idx_pst_dateline;type:int(10) unsigned;not null"`
	Content     string `gorm:"column:idx_pst_content;type:mediumtext;not null"`
}

IndexComment mapped from table <chii_index_comments>

func (*IndexComment) CommentID added in v0.22.0

func (c *IndexComment) CommentID() model.CommentID

func (*IndexComment) CreateAt added in v0.22.0

func (c *IndexComment) CreateAt() time.Time

func (*IndexComment) CreatorID added in v0.22.0

func (c *IndexComment) CreatorID() model.UserID

func (*IndexComment) GetContent added in v0.22.0

func (c *IndexComment) GetContent() string

func (*IndexComment) GetID added in v0.22.0

func (c *IndexComment) GetID() model.CommentID

func (*IndexComment) GetState added in v0.22.0

func (c *IndexComment) GetState() uint8

func (*IndexComment) GetTopicID added in v0.22.0

func (c *IndexComment) GetTopicID() uint32

func (*IndexComment) IsSubComment added in v0.22.0

func (c *IndexComment) IsSubComment() bool

func (*IndexComment) RelatedTo added in v0.22.0

func (c *IndexComment) RelatedTo() model.CommentID

func (*IndexComment) TableName added in v0.22.0

func (*IndexComment) TableName() string

TableName IndexComment's table name

type IndexSubject

type IndexSubject struct {
	ID          uint32  `gorm:"column:idx_rlt_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Cat         int8    `gorm:"column:idx_rlt_cat;type:tinyint(3);not null"`
	IndexID     uint32  `gorm:"column:idx_rlt_rid;type:mediumint(8) unsigned;not null"` // 关联目录
	SubjectType uint8   `gorm:"column:idx_rlt_type;type:smallint(6) unsigned;not null"` // 关联条目类型
	SubjectID   uint32  `gorm:"column:idx_rlt_sid;type:mediumint(8) unsigned;not null"` // 关联条目ID
	Order       uint32  `gorm:"column:idx_rlt_order;type:mediumint(8) unsigned;not null"`
	Comment     string  `gorm:"column:idx_rlt_comment;type:mediumtext;not null"`
	CreatedTime uint32  `gorm:"column:idx_rlt_dateline;type:int(10) unsigned;not null"`
	Subject     Subject `gorm:"foreignKey:idx_rlt_sid;references:subject_id" json:"subject"`
}

IndexSubject mapped from table <chii_index_related>

func (*IndexSubject) TableName

func (*IndexSubject) TableName() string

TableName IndexSubject's table name

type Member

type Member struct {
	ID            model.UserID `gorm:"column:uid;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Username      string       `gorm:"column:username;type:char(15);not null"`
	Nickname      string       `gorm:"column:nickname;type:varchar(30);not null"`
	Avatar        string       `gorm:"column:avatar;type:varchar(255);not null"`
	Groupid       uint8        `gorm:"column:groupid;type:smallint(6) unsigned;not null"`
	Regdate       int64        `gorm:"column:regdate;type:int(10) unsigned;not null"`
	Lastvisit     uint32       `gorm:"column:lastvisit;type:int(10) unsigned;not null"`
	Lastactivity  uint32       `gorm:"column:lastactivity;type:int(10) unsigned;not null"`
	Lastpost      uint32       `gorm:"column:lastpost;type:int(10) unsigned;not null"`
	Dateformat    string       `gorm:"column:dateformat;type:char(10);not null"`
	Timeformat    bool         `gorm:"column:timeformat;type:tinyint(1);not null"`
	Timeoffset    string       `gorm:"column:timeoffset;type:char(4);not null"`
	Newpm         bool         `gorm:"column:newpm;type:tinyint(1);not null"`
	NewNotify     uint16       `gorm:"column:new_notify;type:smallint(6) unsigned;not null"` // 新提醒
	Sign          string       `gorm:"column:sign;type:varchar(255);not null"`
	PasswordCrypt []byte       `gorm:"column:password_crypt;type:char(64);not null"`
	Email         string       `gorm:"column:email;type:char(50);not null"`
	Fields        MemberField  `gorm:"foreignKey:uid;references:uid" json:"fields"`
}

Member mapped from table <chii_members>

func (*Member) TableName

func (*Member) TableName() string

TableName Member's table name

type MemberField

type MemberField struct {
	UID       model.UserID `gorm:"column:uid;type:mediumint(8) unsigned;primaryKey"`
	Site      string       `gorm:"column:site;type:varchar(75);not null"`
	Location  string       `gorm:"column:location;type:varchar(30);not null"`
	Bio       string       `gorm:"column:bio;type:text;not null"`
	Privacy   string       `gorm:"column:privacy;type:mediumtext;not null"`
	Blocklist string       `gorm:"column:blocklist;type:mediumtext;not null"`
}

MemberField mapped from table <chii_memberfields>

func (*MemberField) TableName

func (*MemberField) TableName() string

TableName MemberField's table name

type OAuthClient added in v0.19.0

type OAuthClient struct {
	AppID        uint32 `gorm:"column:app_id;type:mediumint(8);primaryKey"`
	ClientID     string `gorm:"column:client_id;type:varchar(80);not null"`
	ClientSecret string `gorm:"column:client_secret;type:varchar(80)"`
	RedirectURI  string `gorm:"column:redirect_uri;type:varchar(2000)"`
	GrantTypes   string `gorm:"column:grant_types;type:varchar(80)"`
	Scope        string `gorm:"column:scope;type:varchar(4000)"`
	UserID       string `gorm:"column:user_id;type:varchar(80)"`
	App          App    `gorm:"foreignKey:app_id;references:app_id" json:"app"`
}

OAuthClient mapped from table <chii_oauth_clients>

func (*OAuthClient) TableName added in v0.19.0

func (*OAuthClient) TableName() string

TableName OAuthClient's table name

type Person

type Person struct {
	ID          model.PersonID `gorm:"column:prsn_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Name        string         `gorm:"column:prsn_name;type:varchar(255);not null"`
	Type        uint8          `gorm:"column:prsn_type;type:tinyint(4) unsigned;not null"` // 个人,公司,组合
	Infobox     string         `gorm:"column:prsn_infobox;type:mediumtext;not null"`
	Producer    bool           `gorm:"column:prsn_producer;type:tinyint(1);not null"`
	Mangaka     bool           `gorm:"column:prsn_mangaka;type:tinyint(1);not null"`
	Artist      bool           `gorm:"column:prsn_artist;type:tinyint(1);not null"`
	Seiyu       bool           `gorm:"column:prsn_seiyu;type:tinyint(1);not null"`
	Writer      bool           `gorm:"column:prsn_writer;type:tinyint(4);not null"`      // 作家
	Illustrator bool           `gorm:"column:prsn_illustrator;type:tinyint(4);not null"` // 绘师
	Actor       bool           `gorm:"column:prsn_actor;type:tinyint(1);not null"`       // 演员
	Summary     string         `gorm:"column:prsn_summary;type:mediumtext;not null"`
	Img         string         `gorm:"column:prsn_img;type:varchar(255);not null"`
	ImgAnidb    string         `gorm:"column:prsn_img_anidb;type:varchar(255);not null"` // Deprecated
	Comment     uint32         `gorm:"column:prsn_comment;type:mediumint(9) unsigned;not null"`
	Collects    uint32         `gorm:"column:prsn_collects;type:mediumint(8) unsigned;not null"`
	Dateline    uint32         `gorm:"column:prsn_dateline;type:int(10) unsigned;not null"`
	Lastpost    uint32         `gorm:"column:prsn_lastpost;type:int(11) unsigned;not null"`
	Lock        int8           `gorm:"column:prsn_lock;type:tinyint(4);not null"`
	AnidbID     uint32         `gorm:"column:prsn_anidb_id;type:mediumint(8) unsigned;not null"` // Deprecated
	Ban         uint8          `gorm:"column:prsn_ban;type:tinyint(3) unsigned;not null"`
	Redirect    model.PersonID `gorm:"column:prsn_redirect;type:int(10) unsigned;not null"`
	Nsfw        bool           `gorm:"column:prsn_nsfw;type:tinyint(1) unsigned;not null"`
	Fields      PersonField    `gorm:"foreignKey:prsn_id;polymorphic:Owner;polymorphicValue:prsn" json:"fields"`
}

Person mapped from table <chii_persons>

func (*Person) TableName

func (*Person) TableName() string

TableName Person's table name

type PersonComment added in v0.22.0

type PersonComment struct {
	ID          uint32 `gorm:"column:prsn_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:prsn_pst_mid;type:mediumint(8) unsigned;not null"` // 关联人物ID
	UID         uint32 `gorm:"column:prsn_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:prsn_pst_related;type:mediumint(8) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:prsn_pst_dateline;type:int(10) unsigned;not null"`
	Content     string `gorm:"column:prsn_pst_content;type:mediumtext;not null"`
}

PersonComment mapped from table <chii_prsn_comments>

func (*PersonComment) CommentID added in v0.22.0

func (c *PersonComment) CommentID() model.CommentID

func (*PersonComment) CreateAt added in v0.22.0

func (c *PersonComment) CreateAt() time.Time

func (*PersonComment) CreatorID added in v0.22.0

func (c *PersonComment) CreatorID() model.UserID

func (*PersonComment) GetContent added in v0.22.0

func (c *PersonComment) GetContent() string

func (*PersonComment) GetID added in v0.22.0

func (c *PersonComment) GetID() model.CommentID

func (*PersonComment) GetState added in v0.22.0

func (c *PersonComment) GetState() uint8

func (*PersonComment) GetTopicID added in v0.22.0

func (c *PersonComment) GetTopicID() uint32

func (*PersonComment) IsSubComment added in v0.22.0

func (c *PersonComment) IsSubComment() bool

func (*PersonComment) RelatedTo added in v0.22.0

func (c *PersonComment) RelatedTo() model.CommentID

func (*PersonComment) TableName added in v0.22.0

func (*PersonComment) TableName() string

TableName PersonComment's table name

type PersonField

type PersonField struct {
	OwnerType string         `gorm:"column:prsn_cat;type:enum('prsn','crt');primaryKey"`
	OwnerID   model.PersonID `gorm:"column:prsn_id;type:int(8) unsigned;primaryKey"`
	Gender    uint8          `gorm:"column:gender;type:tinyint(4) unsigned;not null"`
	Bloodtype uint8          `gorm:"column:bloodtype;type:tinyint(4) unsigned;not null"`
	BirthYear uint16         `gorm:"column:birth_year;type:year(4);not null"`
	BirthMon  uint8          `gorm:"column:birth_mon;type:tinyint(2) unsigned;not null"`
	BirthDay  uint8          `gorm:"column:birth_day;type:tinyint(2) unsigned;not null"`
}

PersonField mapped from table <chii_person_fields>

func (*PersonField) TableName

func (*PersonField) TableName() string

TableName PersonField's table name

type PersonSubjects

type PersonSubjects struct {
	PrsnType      string          `gorm:"column:prsn_type;type:enum('prsn','crt');primaryKey"`
	PersonID      model.PersonID  `gorm:"column:prsn_id;type:mediumint(9) unsigned;primaryKey"`
	PrsnPosition  uint16          `gorm:"column:prsn_position;type:smallint(5) unsigned;primaryKey"` // 监督,原案,脚本,..
	SubjectID     model.SubjectID `gorm:"column:subject_id;type:mediumint(9) unsigned;primaryKey"`
	SubjectTypeID uint8           `gorm:"column:subject_type_id;type:tinyint(4) unsigned;not null"`
	Summary       string          `gorm:"column:summary;type:mediumtext;not null"`
	PrsnAppearEps string          `gorm:"column:prsn_appear_eps;type:mediumtext;not null"` // 可选,人物参与的章节
	Subject       Subject         `gorm:"foreignKey:subject_id;references:subject_id" json:"subject"`
	Person        Person          `gorm:"foreignKey:prsn_id;references:prsn_id" json:"person"`
}

PersonSubjects mapped from table <chii_person_cs_index>

func (*PersonSubjects) TableName

func (*PersonSubjects) TableName() string

TableName PersonSubjects's table name

type RevisionHistory added in v0.10.1

type RevisionHistory struct {
	ID          uint32       `gorm:"column:rev_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Type        uint8        `gorm:"column:rev_type;type:tinyint(3) unsigned;not null"`  // 条目,角色,人物
	Mid         uint32       `gorm:"column:rev_mid;type:mediumint(8) unsigned;not null"` // 对应条目,人物的ID
	TextID      uint32       `gorm:"column:rev_text_id;type:mediumint(9) unsigned;not null"`
	CreatedTime uint32       `gorm:"column:rev_dateline;type:int(10) unsigned;not null"`
	CreatorID   model.UserID `gorm:"column:rev_creator;type:mediumint(8) unsigned;not null"`
	Summary     string       `gorm:"column:rev_edit_summary;type:varchar(200);not null"`
}

RevisionHistory mapped from table <chii_rev_history>

func (*RevisionHistory) TableName added in v0.10.1

func (*RevisionHistory) TableName() string

TableName RevisionHistory's table name

type RevisionText added in v0.10.1

type RevisionText struct {
	TextID uint32 `gorm:"column:rev_text_id;type:mediumint(9) unsigned;primaryKey;autoIncrement:true"`
	Text   []byte `gorm:"column:rev_text;type:mediumblob;not null"`
}

RevisionText mapped from table <chii_rev_text>

func (*RevisionText) TableName added in v0.10.1

func (*RevisionText) TableName() string

TableName RevisionText's table name

type Subject

type Subject struct {
	ID          model.SubjectID `gorm:"column:subject_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TypeID      uint8           `gorm:"column:subject_type_id;type:smallint(6) unsigned;not null"`
	Name        string          `gorm:"column:subject_name;type:varchar(80);not null"`
	NameCN      string          `gorm:"column:subject_name_cn;type:varchar(80);not null"`
	UID         string          `gorm:"column:subject_uid;type:varchar(20);not null"` // isbn / imdb
	Creator     uint32          `gorm:"column:subject_creator;type:mediumint(8) unsigned;not null"`
	Dateline    uint32          `gorm:"column:subject_dateline;type:int(10) unsigned;not null"`
	Image       string          `gorm:"column:subject_image;type:varchar(255);not null"`
	Platform    uint16          `gorm:"column:subject_platform;type:smallint(6) unsigned;not null"`
	Infobox     string          `gorm:"column:field_infobox;type:mediumtext;not null"`
	Summary     string          `gorm:"column:field_summary;type:mediumtext;not null"`            // summary
	Field5      string          `gorm:"column:field_5;type:mediumtext;not null"`                  // author summary
	Volumes     uint32          `gorm:"column:field_volumes;type:mediumint(8) unsigned;not null"` // 卷数
	Eps         uint32          `gorm:"column:field_eps;type:mediumint(8) unsigned;not null"`
	Wish        uint32          `gorm:"column:subject_wish;type:mediumint(8) unsigned;not null"`
	Collect     uint32          `gorm:"column:subject_collect;type:mediumint(8) unsigned;not null"`
	Doing       uint32          `gorm:"column:subject_doing;type:mediumint(8) unsigned;not null"`
	OnHold      uint32          `gorm:"column:subject_on_hold;type:mediumint(8) unsigned;not null"` // 搁置人数
	Dropped     uint32          `gorm:"column:subject_dropped;type:mediumint(8) unsigned;not null"` // 抛弃人数
	Series      bool            `gorm:"column:subject_series;type:tinyint(1) unsigned;not null"`
	SeriesEntry uint32          `gorm:"column:subject_series_entry;type:mediumint(8) unsigned;not null"`
	IdxCn       string          `gorm:"column:subject_idx_cn;type:varchar(1);not null"`
	Airtime     uint8           `gorm:"column:subject_airtime;type:tinyint(1) unsigned;not null"`
	Nsfw        bool            `gorm:"column:subject_nsfw;type:tinyint(1);not null"`
	Ban         uint8           `gorm:"column:subject_ban;type:tinyint(1) unsigned;not null"`
	Fields      SubjectField    `gorm:"foreignKey:subject_id;references:field_sid" json:"fields"`
}

Subject mapped from table <chii_subjects>

func (*Subject) TableName

func (*Subject) TableName() string

TableName Subject's table name

type SubjectCollection

type SubjectCollection struct {
	ID           uint32          `gorm:"column:interest_id;type:int(10) unsigned;primaryKey;autoIncrement:true"`
	UserID       model.UserID    `gorm:"column:interest_uid;type:mediumint(8) unsigned;not null"`
	SubjectID    model.SubjectID `gorm:"column:interest_subject_id;type:mediumint(8) unsigned;not null"`
	SubjectType  uint8           `gorm:"column:interest_subject_type;type:smallint(6) unsigned;not null"`
	Rate         uint8           `gorm:"column:interest_rate;type:tinyint(3) unsigned;not null"`
	Type         uint8           `gorm:"column:interest_type;type:tinyint(1) unsigned;not null"`
	HasComment   bool            `gorm:"column:interest_has_comment;type:tinyint(1) unsigned;not null"`
	Comment      string          `gorm:"column:interest_comment;type:mediumtext;not null"`
	Tag          string          `gorm:"column:interest_tag;type:mediumtext;not null"`
	EpStatus     uint32          `gorm:"column:interest_ep_status;type:mediumint(8) unsigned;not null"`
	VolStatus    uint32          `gorm:"column:interest_vol_status;type:mediumint(8) unsigned;not null"` // 卷数
	WishTime     uint32          `gorm:"column:interest_wish_dateline;type:int(10) unsigned;not null"`
	DoingTime    uint32          `gorm:"column:interest_doing_dateline;type:int(10) unsigned;not null"`
	DoneTime     uint32          `gorm:"column:interest_collect_dateline;type:int(10) unsigned;not null"`
	OnHoldTime   uint32          `gorm:"column:interest_on_hold_dateline;type:int(10) unsigned;not null"`
	DroppedTime  uint32          `gorm:"column:interest_dropped_dateline;type:int(10) unsigned;not null"`
	CreateIP     string          `gorm:"column:interest_create_ip;type:char(15);not null"`
	LastUpdateIP string          `gorm:"column:interest_lasttouch_ip;type:char(15);not null"`
	UpdatedTime  uint32          `gorm:"column:interest_lasttouch;type:int(10) unsigned;not null"`
	Private      uint8           `gorm:"column:interest_private;type:tinyint(1) unsigned;not null"`
}

SubjectCollection mapped from table <chii_subject_interests>

func (*SubjectCollection) TableName

func (*SubjectCollection) TableName() string

TableName SubjectCollection's table name

type SubjectField

type SubjectField struct {
	Sid      uint32          `gorm:"column:field_sid;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Tid      uint16          `gorm:"column:field_tid;type:smallint(6) unsigned;not null"`
	Tags     []byte          `gorm:"column:field_tags;type:mediumtext;not null"`
	Rate1    uint32          `gorm:"column:field_rate_1;type:mediumint(8) unsigned;not null"`
	Rate2    uint32          `gorm:"column:field_rate_2;type:mediumint(8) unsigned;not null"`
	Rate3    uint32          `gorm:"column:field_rate_3;type:mediumint(8) unsigned;not null"`
	Rate4    uint32          `gorm:"column:field_rate_4;type:mediumint(8) unsigned;not null"`
	Rate5    uint32          `gorm:"column:field_rate_5;type:mediumint(8) unsigned;not null"`
	Rate6    uint32          `gorm:"column:field_rate_6;type:mediumint(8) unsigned;not null"`
	Rate7    uint32          `gorm:"column:field_rate_7;type:mediumint(8) unsigned;not null"`
	Rate8    uint32          `gorm:"column:field_rate_8;type:mediumint(8) unsigned;not null"`
	Rate9    uint32          `gorm:"column:field_rate_9;type:mediumint(8) unsigned;not null"`
	Rate10   uint32          `gorm:"column:field_rate_10;type:mediumint(8) unsigned;not null"`
	Airtime  uint8           `gorm:"column:field_airtime;type:tinyint(1) unsigned;not null"`
	Rank     uint32          `gorm:"column:field_rank;type:int(10) unsigned;not null"`
	Year     int32           `gorm:"column:field_year;type:year(4);not null"`        // 放送年份
	Mon      int8            `gorm:"column:field_mon;type:tinyint(2);not null"`      // 放送月份
	WeekDay  int8            `gorm:"column:field_week_day;type:tinyint(1);not null"` // 放送日(星期X)
	Date     time.Time       `gorm:"column:field_date;type:date;not null"`           // 放送日期
	Redirect model.SubjectID `gorm:"column:field_redirect;type:mediumint(8) unsigned;not null"`
}

SubjectField mapped from table <chii_subject_fields>

func (*SubjectField) TableName

func (*SubjectField) TableName() string

TableName SubjectField's table name

type SubjectRelation

type SubjectRelation struct {
	SubjectID            model.SubjectID `gorm:"column:rlt_subject_id;type:mediumint(8) unsigned;primaryKey"` // 关联主 ID
	SubjectTypeID        uint8           `gorm:"column:rlt_subject_type_id;type:tinyint(3) unsigned;not null"`
	RelationType         uint16          `gorm:"column:rlt_relation_type;type:smallint(5) unsigned;not null"`          // 关联类型
	RelatedSubjectID     model.SubjectID `gorm:"column:rlt_related_subject_id;type:mediumint(8) unsigned;primaryKey"`  // 关联目标 ID
	RelatedSubjectTypeID uint8           `gorm:"column:rlt_related_subject_type_id;type:tinyint(3) unsigned;not null"` // 关联目标类型
	ViceVersa            bool            `gorm:"column:rlt_vice_versa;type:tinyint(1) unsigned;primaryKey"`
	Order                uint8           `gorm:"column:rlt_order;type:tinyint(3) unsigned;not null"` // 关联排序
	Subject              Subject         `gorm:"foreignKey:rlt_related_subject_id;references:subject_id" json:"subject"`
}

SubjectRelation mapped from table <chii_subject_relations>

func (*SubjectRelation) TableName

func (*SubjectRelation) TableName() string

TableName SubjectRelation's table name

type SubjectRevision

type SubjectRevision struct {
	ID           uint32          `gorm:"column:rev_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Type         uint8           `gorm:"column:rev_type;type:tinyint(3) unsigned;not null;default:1"` // 修订类型
	SubjectID    model.SubjectID `gorm:"column:rev_subject_id;type:mediumint(8) unsigned;not null"`
	TypeID       uint16          `gorm:"column:rev_type_id;type:smallint(6) unsigned;not null"`
	CreatorID    model.UserID    `gorm:"column:rev_creator;type:mediumint(8) unsigned;not null"`
	Dateline     uint32          `gorm:"column:rev_dateline;type:int(10) unsigned;not null"`
	Name         string          `gorm:"column:rev_name;type:varchar(80);not null"`
	NameCN       string          `gorm:"column:rev_name_cn;type:varchar(80);not null"`
	FieldInfobox string          `gorm:"column:rev_field_infobox;type:mediumtext;not null"`
	FieldSummary string          `gorm:"column:rev_field_summary;type:mediumtext;not null"`
	VoteField    string          `gorm:"column:rev_vote_field;type:mediumtext;not null"`
	FieldEps     uint32          `gorm:"column:rev_field_eps;type:mediumint(8) unsigned;not null"`
	EditSummary  string          `gorm:"column:rev_edit_summary;type:varchar(200);not null"`
	Platform     uint16          `gorm:"column:rev_platform;type:smallint(6) unsigned;not null"`
	Subject      Subject         `gorm:"foreignKey:rev_subject_id;references:subject_id" json:"subject"`
}

SubjectRevision mapped from table <chii_subject_revisions>

func (*SubjectRevision) TableName

func (*SubjectRevision) TableName() string

TableName SubjectRevision's table name

type SubjectTopic added in v0.22.0

type SubjectTopic struct {
	ID          uint32 `gorm:"column:sbj_tpc_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	SubjectID   uint32 `gorm:"column:sbj_tpc_subject_id;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:sbj_tpc_uid;type:mediumint(8) unsigned;not null"`
	Title       string `gorm:"column:sbj_tpc_title;type:varchar(80);not null"`
	CreatedTime uint32 `gorm:"column:sbj_tpc_dateline;type:int(10) unsigned;not null"`
	UpdatedTime uint32 `gorm:"column:sbj_tpc_lastpost;type:int(10) unsigned;not null"`
	Replies     uint32 `gorm:"column:sbj_tpc_replies;type:mediumint(8) unsigned;not null"`
	State       uint8  `gorm:"column:sbj_tpc_state;type:tinyint(1) unsigned;not null"`
	Display     uint8  `gorm:"column:sbj_tpc_display;type:tinyint(1) unsigned;not null;default:1"`
}

SubjectTopic mapped from table <chii_subject_topics>

func (*SubjectTopic) GetCreateTime added in v0.22.0

func (t *SubjectTopic) GetCreateTime() time.Time

func (*SubjectTopic) GetCreatorID added in v0.22.0

func (t *SubjectTopic) GetCreatorID() uint32

func (*SubjectTopic) GetDisplay added in v0.25.9

func (t *SubjectTopic) GetDisplay() uint8

func (*SubjectTopic) GetID added in v0.22.0

func (t *SubjectTopic) GetID() uint32

func (*SubjectTopic) GetParentID added in v0.24.1

func (t *SubjectTopic) GetParentID() uint32

func (*SubjectTopic) GetReplies added in v0.22.0

func (t *SubjectTopic) GetReplies() uint32

func (*SubjectTopic) GetState added in v0.22.0

func (t *SubjectTopic) GetState() uint8

func (*SubjectTopic) GetTitle added in v0.22.0

func (t *SubjectTopic) GetTitle() string

func (*SubjectTopic) GetUpdateTime added in v0.22.0

func (t *SubjectTopic) GetUpdateTime() time.Time

func (*SubjectTopic) TableName added in v0.22.0

func (*SubjectTopic) TableName() string

TableName SubjectTopic's table name

type SubjectTopicComment added in v0.22.0

type SubjectTopicComment struct {
	ID          uint32 `gorm:"column:sbj_pst_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	TopicID     uint32 `gorm:"column:sbj_pst_mid;type:mediumint(8) unsigned;not null"`
	UID         uint32 `gorm:"column:sbj_pst_uid;type:mediumint(8) unsigned;not null"`
	Related     uint32 `gorm:"column:sbj_pst_related;type:mediumint(8) unsigned;not null"`
	Content     string `gorm:"column:sbj_pst_content;type:mediumtext;not null"`
	State       uint8  `gorm:"column:sbj_pst_state;type:tinyint(1) unsigned;not null"`
	CreatedTime uint32 `gorm:"column:sbj_pst_dateline;type:int(10) unsigned;not null"`
}

SubjectTopicComment mapped from table <chii_subject_posts>

func (*SubjectTopicComment) CommentID added in v0.22.0

func (c *SubjectTopicComment) CommentID() model.CommentID

func (*SubjectTopicComment) CreateAt added in v0.22.0

func (c *SubjectTopicComment) CreateAt() time.Time

func (*SubjectTopicComment) CreatorID added in v0.22.0

func (c *SubjectTopicComment) CreatorID() model.UserID

func (*SubjectTopicComment) GetContent added in v0.22.0

func (c *SubjectTopicComment) GetContent() string

func (*SubjectTopicComment) GetID added in v0.22.0

func (c *SubjectTopicComment) GetID() model.CommentID

func (*SubjectTopicComment) GetState added in v0.22.0

func (c *SubjectTopicComment) GetState() uint8

func (*SubjectTopicComment) GetTopicID added in v0.22.0

func (c *SubjectTopicComment) GetTopicID() uint32

func (*SubjectTopicComment) IsSubComment added in v0.22.0

func (c *SubjectTopicComment) IsSubComment() bool

func (*SubjectTopicComment) RelatedTo added in v0.22.0

func (c *SubjectTopicComment) RelatedTo() model.CommentID

func (*SubjectTopicComment) TableName added in v0.22.0

func (*SubjectTopicComment) TableName() string

TableName SubjectTopicComment's table name

type TimeLine added in v0.25.7

type TimeLine struct {
	ID       model.TimeLineID `gorm:"column:tml_id;type:int(10) unsigned;primaryKey;autoIncrement:true"`
	UID      model.UserID     `gorm:"column:tml_uid;type:mediumint(8) unsigned;not null"`
	Cat      uint16           `gorm:"column:tml_cat;type:smallint(6) unsigned;not null"`
	Type     uint16           `gorm:"column:tml_type;type:smallint(6) unsigned;not null"`
	Related  string           `gorm:"column:tml_related;type:char(255);not null;default:0"`
	Memo     []byte           `gorm:"column:tml_memo;type:mediumtext;not null"`
	Img      []byte           `gorm:"column:tml_img;type:mediumtext;not null"`
	Batch    uint8            `gorm:"column:tml_batch;type:tinyint(3) unsigned;not null"`
	Source   uint8            `gorm:"column:tml_source;type:tinyint(3) unsigned;not null"`    // 更新来源
	Replies  uint32           `gorm:"column:tml_replies;type:mediumint(8) unsigned;not null"` // 回复数
	Dateline uint32           `gorm:"column:tml_dateline;type:int(10) unsigned;not null"`
	Status   uint8            `gorm:"column:tml_status;type:tinyint(3) unsigned;not null"`
}

TimeLine mapped from table <chii_timeline>

func (*TimeLine) TableName added in v0.25.7

func (*TimeLine) TableName() string

TableName TimeLine's table name

type UserGroup added in v0.12.4

type UserGroup struct {
	ID       uint8  `gorm:"column:usr_grp_id;type:mediumint(8) unsigned;primaryKey;autoIncrement:true"`
	Name     string `gorm:"column:usr_grp_name;type:varchar(255);not null"`
	Perm     []byte `gorm:"column:usr_grp_perm;type:mediumtext;not null"`
	Dateline uint32 `gorm:"column:usr_grp_dateline;type:int(10) unsigned;not null"`
}

UserGroup mapped from table <chii_usergroup>

func (*UserGroup) TableName added in v0.12.4

func (*UserGroup) TableName() string

TableName UserGroup's table name

type WebSession added in v0.12.4

type WebSession struct {
	Key       string       `gorm:"column:key;type:char(64);primaryKey"`           // session key
	UserID    model.UserID `gorm:"column:user_id;type:int(10) unsigned;not null"` // uint32 user id
	Value     []byte       `gorm:"column:value;type:mediumblob;not null"`         // json encoded session data
	CreatedAt int64        `gorm:"column:created_at;type:bigint(20);not null"`    // int64 unix timestamp, when session is created
	ExpiredAt int64        `gorm:"column:expired_at;type:bigint(20);not null"`    // int64 unix timestamp, when session is expired
}

WebSession mapped from table <chii_os_web_sessions>

func (*WebSession) TableName added in v0.12.4

func (*WebSession) TableName() string

TableName WebSession's table name

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL