pet-manual.ts 551 B

12345678910111213141516171819202122232425262728293031323334
  1. import type { Paging } from '@/model/base'
  2. export interface CreateCarousalsRequest {
  3. imageUrl: string
  4. targetType: string
  5. targetUrl: string
  6. targetId?: string
  7. }
  8. export interface Category {
  9. id: string
  10. code: string
  11. name: string
  12. isClick?: boolean
  13. }
  14. export interface ArticleParams extends Paging {
  15. title: string
  16. categoryId: string
  17. }
  18. export interface Article {
  19. id: string
  20. content: string
  21. status: string
  22. title: string
  23. updatedTime?: string
  24. imageUrl?: string
  25. }
  26. export interface Recommends {
  27. id: string
  28. keyword: string
  29. }