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