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