一种通用的动作解决方案

致敬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"
}

posted @ 2022-03-06 10:37  叶常落  阅读(2)  评论(0编辑  收藏  举报