comein.go 440 B

123456789101112131415161718
  1. package response
  2. import (
  3. "github.com/rdlucklib/rdluck_tools/paging"
  4. "hongze/hz_crm_api/models/yb"
  5. )
  6. // ComeinListResp 进门列表数据返回
  7. type ComeinListResp struct {
  8. Paging *paging.PagingItem
  9. List []*yb.ComeinEventItem `description:"列表数据"`
  10. }
  11. // ComeinUserListResp 到会用户列表数据返回
  12. type ComeinUserListResp struct {
  13. Paging *paging.PagingItem
  14. List []*yb.ComeinEventUser `description:"列表数据"`
  15. }