go-common/app/service/live/xlottery/model/beats.go

16 lines
381 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
import "time"
// Beat ap_user_beats_info
type Beat struct {
ID int64 `json:"id"`
UID int64 `json:"uid"`
Content string `json:"content"`
Status int `json:"status"`
Operator string `json:"operator"`
UpdateTime time.Time `json:"update_time"`
Ctime time.Time `json:"ctime"`
Mtime time.Time `json:"mtime"`
}