users.go 417 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta/eta_mini_crm/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type UsersAddCheckResp struct {
  7. CheckResult int `description:"校验结果:0-通过;1-试用用户;2-个人投资者;3-机构投资者"`
  8. Tips string `description:"提示语"`
  9. }
  10. type UsersPageListResp struct {
  11. Paging *paging.PagingItem
  12. List []*models.UsersItem `description:"用户列表"`
  13. }