application.go 519 B

123456789101112131415161718192021222324
  1. package v1
  2. import (
  3. "property-system-gateway/param/base"
  4. "property-system-gateway/pb/v1"
  5. )
  6. // 应用相关
  7. type ApplicationListQuery struct {
  8. Page int64 `form:"page" json:"page"`
  9. PageSize int64 `form:"page_size" json:"page_size"`
  10. //Enable int32 `form:"enable" json:"enable"`
  11. PackageId int64 `form:"package_id" json:"package_id"`
  12. }
  13. type ApplicationListRequest struct {
  14. base.Header
  15. ApplicationListQuery
  16. }
  17. type ApplicationListResponse struct {
  18. base.Result
  19. Data v1.ApplicationListReply `json:"data"`
  20. }