致敬ruby-china
https://ruby-china.org/topics/32262
点赞
收藏
订阅
喜欢
阅读
表结构设计
字段
action_type
action_option
target_type
target_id
user_type
user_id
timestamps
model的设计
type ActionsModel struct {
Id int64 xorm:"id"
ActionType string xorm:"action_type"
ActionOption string xorm:"action_option"
TargetType string xorm:"target_type"
TargetId string xorm:"target_id"
UserType string xorm:"user_type"
UserId int64 xorm:"user_id"
GmtCreate time.Time xorm:"gmt_create" json:"gmt_crete"
GmtModified time.Time xorm:"gmt_modified" json:"gmt_modified"
IsDelete int8 xorm:"is_delete" json:"is_delete"
}