apply_record.go 342 B

12345678910111213141516
  1. package response
  2. import (
  3. "github.com/rdlucklib/rdluck_tools/paging"
  4. "hongze/hz_crm_api/models/yb"
  5. )
  6. type ApplyRecordListResp struct {
  7. Paging *paging.PagingItem
  8. List []*yb.ApplyList `description:"列表数据"`
  9. }
  10. type ApplyRecordListV2Resp struct {
  11. Paging *paging.PagingItem
  12. List []*yb.ApplyListV2 `description:"列表数据"`
  13. }