common.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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"` //关键字
  7. }
  8. // GetById Find by id structure
  9. type GetById struct {
  10. ID int `json:"id" form:"id"` // 主键ID
  11. }
  12. func (r *GetById) Uint() uint {
  13. return uint(r.ID)
  14. }
  15. type IdsReq struct {
  16. Ids []int `json:"ids" form:"ids"`
  17. }
  18. // GetAuthorityId Get role by id structure
  19. type GetAuthorityId struct {
  20. AuthorityId uint `json:"authorityId" form:"authorityId"` // 角色ID
  21. }
  22. type DeviceSearch struct {
  23. PageInfo PageInfo `json:"pageInfo" form:"pageInfo"` // 分页信息
  24. Sn string `json:"sn" form:"sn"` //设备sn
  25. Name string `json:"name" form:"name"` // 设备名称
  26. Genre int `json:"genre" form:"genre"` //设备类型
  27. }
  28. type TunnelSearch struct {
  29. PageInfo PageInfo `json:"pageInfo" form:"pageInfo"` // 分页信息
  30. Name string `json:"name" form:"name"` //隧道名称
  31. RegionId int `json:"regionId" form:"regionId"`
  32. }
  33. type RegionTunnelsId struct {
  34. TunnelIds []int `json:"tunnelIds" form:"tunnelIds"`
  35. RegionId int `json:"regionId" form:"regionId"`
  36. }
  37. type Empty struct{}