product.go 316 B

1234567891011121314151617
  1. package response
  2. import (
  3. "eta/eta_mini_crm_ht/services"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ProductListResp struct {
  7. List []*services.ProductView
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }
  10. type ProductRiskResp struct {
  11. RiskLevel string
  12. SourceId int
  13. ProductType string
  14. }