123456789101112131415161718192021 |
- package model
- import (
- xtime "go-common/library/time"
- )
- const (
- ActionNormal int32 = 0
- ActionLike int32 = 1
- ActionHate int32 = 2
- )
- type Action struct {
- ID int64 `json:"-"`
- RpID int64 `json:"rpid"`
- Action int8 `json:"action"`
- Mid int64 `json:"mid"`
- CTime xtime.Time `json:"-"`
- }
|