tenant.go 548 B

123456789101112131415161718192021222324
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. const (
  4. AdminTenantId = "999999" //默认租户
  5. )
  6. type RsqTenantList struct {
  7. Records []dao.Tenant `json:"records"` //记录列表
  8. Current int `json:"current"` //当前分页
  9. Size int `json:"size"` //每页数量
  10. Pages int `json:"pages"` //总页数
  11. Total int64 `json:"total"` //总数
  12. }
  13. type ReqTenantRemove struct {
  14. IDs int `json:"ids"`
  15. Name string `json:"name"`
  16. }
  17. type ReqTenantResetPwd struct {
  18. IDs int64 `json:"ids"`
  19. }