Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package model
import (
xtime "go-common/library/time"
)
// Action 点赞或踩
const (
ActionNormal int32 = 0 // 未踩赞
ActionLike int32 = 1 // 赞
ActionHate int32 = 2 // 踩
)
// Action reply action info
type Action struct {
ID int64 `json:"-"`
RpID int64 `json:"rpid"`
Action int8 `json:"action"`
Mid int64 `json:"mid"`
CTime xtime.Time `json:"-"`
}