12345678910111213141516171819202122232425262728293031323334 |
- package response
- import (
- "github.com/rdlucklib/rdluck_tools/paging"
- "hongze/hz_crm_api/models"
- "hongze/hz_crm_api/models/yb"
- )
- type ListResp struct {
- Paging *paging.PagingItem
- List []*yb.ActivityList `description:"列表数据"`
- }
- type AddActivityResp struct {
- ActivityId int `description:"活动id"`
- }
- type SpeakerListResp struct {
- List []*yb.Speaker `description:"列表数据"`
- }
- type ResearchReportListResp struct {
- Paging *paging.PagingItem
- List []*models.ResearchReportList `description:"列表数据"`
- }
- type ActivityDetailResp struct {
- *yb.Activity
- Poster []*yb.ActivityPoster
- }
|