go-common/app/service/live/xlottery/model/shield_keywork.go
2019-04-22 18:49:16 +08:00

13 lines
309 B
Go

package model
import "time"
// ShieldKeyWork ShieldKeyWorks
type ShieldKeyWork struct {
ID int64 `json:"id"`
UID int64 `json:"uid"`
OriginalKeyword string `json:"origin_keyword"`
KeyWord string `json:"keyword"`
Ctime time.Time `json:"ctime"`
}