123456789101112131415161718192021222324252627 |
- package response
- import (
- "eta/eta_mini_crm/models"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type UserListResp struct {
- List []*models.UserView
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type UserCheckResp struct {
- UserId int
- Status int
- }
- type UserChangeRecordResp struct {
- List []*models.UserChangeRecord
- // Paging *paging.PagingItem `description:"分页数据"`
- }
- type UserDetailResp struct {
- Detail *models.UserView
- Permission map[string][]string
- }
|