123456789101112131415161718192021222324 |
- package model
- import "iot_manager_service/app/system/dao"
- const (
- AdminTenantId = "999999" //默认租户
- )
- type RsqTenantList struct {
- Records []dao.Tenant `json:"records"` //记录列表
- Current int `json:"current"` //当前分页
- Size int `json:"size"` //每页数量
- Pages int `json:"pages"` //总页数
- Total int64 `json:"total"` //总数
- }
- type ReqTenantRemove struct {
- IDs int `json:"ids"`
- Name string `json:"name"`
- }
- type ReqTenantResetPwd struct {
- IDs int64 `json:"ids"`
- }
|