common.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package request
  2. // PageInfo Paging common input parameter structure
  3. type PageInfo struct {
  4. Page int `json:"page" form:"page"` // 页码
  5. PageSize int `json:"pageSize" form:"pageSize"` // 每页大小
  6. Keyword string `json:"keyword" form:"keyword"` //关键字1
  7. Shunt string `json:"shunt" form:"shunt"` //关键字2
  8. }
  9. // GetById Find by id structure
  10. type GetById struct {
  11. ID int `json:"id" form:"id"` // 主键ID
  12. }
  13. func (r *GetById) Uint() uint {
  14. return uint(r.ID)
  15. }
  16. type IdsReq struct {
  17. Ids []int `json:"ids" form:"ids"`
  18. }
  19. type DeviceStatus struct {
  20. Status int `json:"status"` //在线状态 1 在线 0 离线
  21. PlayStatus int `json:"playStatus"` // 播放状态 1 正常 0 异常
  22. DisplayStatus int `json:"displayStatus"` // 显示模板状态 1 正常 0 异常
  23. SourceStatus int `json:"sourceStatus"` // 素材状态 1 正常 0 异常
  24. }
  25. // GetAuthorityId Get role by id structure
  26. type GetAuthorityId struct {
  27. AuthorityId uint `json:"authorityId" form:"authorityId"` // 角色ID
  28. }
  29. type Empty struct{}