tenant.go 629 B

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