// Code generated by dol build. DO NOT EDIT. // source: auto.go package model import ( "github.com/2637309949/dolphin/packages/null" ) // FlarumPostMentionsPost defined type FlarumPostMentionsPost struct { // PostId null.Int `xorm:"int(10) pk notnull 'post_id'" json:"post_id" xml:"post_id"` // MentionsPostId null.Int `xorm:"int(10) pk notnull 'mentions_post_id'" json:"mentions_post_id" xml:"mentions_post_id"` // Creator CreateBy null.String `xorm:"varchar(36) comment('Creator') 'create_by'" json:"create_by" xml:"create_by"` // Creation time CreateTime null.Time `xorm:"datetime comment('Creation time') 'create_time'" json:"create_time" xml:"create_time"` // Last updated by UpdateBy null.String `xorm:"varchar(36) comment('Last updated by') 'update_by'" json:"update_by" xml:"update_by"` // Last update time UpdateTime null.Time `xorm:"datetime comment('Last update time') 'update_time'" json:"update_time" xml:"update_time"` // Delete tag DelFlag null.Int `xorm:"notnull comment('Delete tag') 'del_flag'" json:"del_flag" xml:"del_flag"` // Remark Remark null.String `xorm:"varchar(200) comment('Remark') 'remark'" json:"remark" xml:"remark"` } // TableName table name of defined FlarumPostMentionsPost func (m *FlarumPostMentionsPost) TableName() string { return "flarum_post_mentions_post" }