mcncache.go 290 B

1234567891011121314
  1. package mcnmodel
  2. import "time"
  3. // PublicationPriceCache .
  4. type PublicationPriceCache struct {
  5. ModifyTime time.Time `json:"mtime"`
  6. }
  7. // UpPermissionCache .
  8. type UpPermissionCache struct {
  9. IsNull bool `json:"is_null"` // 缓存用来标记
  10. Permission uint32 `json:"permission"`
  11. }