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"`
- }
|