You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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"` |
|
}
|
|
|