user.go 475 B

1234567891011121314151617181920212223242526
  1. package response
  2. import (
  3. "eta/eta_mini_crm/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type UserListResp struct {
  7. List []*models.UserView
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }
  10. type UserCheckResp struct {
  11. UserId int
  12. }
  13. type UserChangeRecordResp struct {
  14. List []*models.UserChangeRecord
  15. Paging *paging.PagingItem `description:"分页数据"`
  16. }
  17. type UserDetailResp struct {
  18. Detail *models.User
  19. Permission map[string][]string
  20. }