go-common/app/interface/main/mcn/model/mcnmodel/mcncache.go

15 lines
290 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package mcnmodel
import "time"
// PublicationPriceCache .
type PublicationPriceCache struct {
ModifyTime time.Time `json:"mtime"`
}
// UpPermissionCache .
type UpPermissionCache struct {
IsNull bool `json:"is_null"` // 缓存用来标记
Permission uint32 `json:"permission"`
}