123456789101112131415161718 |
- package response
- import (
- "github.com/rdlucklib/rdluck_tools/paging"
- "hongze/hz_crm_api/models/yb"
- )
- type QsListResp struct {
- Paging *paging.PagingItem
- List []*yb.QsList `description:"列表数据"`
- }
- type QsUserListResp struct {
- Paging *paging.PagingItem
- List []*yb.QsEventUser `description:"列表数据"`
- }
|