common.go 198 B

12345678910111213
  1. package model
  2. const (
  3. //LogBlacklist blacklist action log type id
  4. LogBlacklist = 1
  5. )
  6. //Page pager
  7. type Page struct {
  8. Num int `json:"num"`
  9. Size int `json:"size"`
  10. Total int `json:"total"`
  11. }