13 lines
309 B
Go
Raw Permalink Normal View History

2019-04-22 02:59:20 +00:00
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"`
}