| 12345678910111213141516171819202122232425262728293031323334 |
- import type { Paging } from '@/model/base'
- export interface CreateCarousalsRequest {
- imageUrl: string
- targetType: string
- targetUrl: string
- targetId?: string
- }
- export interface Category {
- id: string
- code: string
- name: string
- isClick?: boolean
- }
- export interface ArticleParams extends Paging {
- title: string
- categoryId: string
- }
- export interface Article {
- id: string
- content: string
- status: string
- title: string
- updatedTime?: string
- imageUrl?: string
- }
- export interface Recommends {
- id: string
- keyword: string
- }
|