36 lines
564 B
TypeScript
36 lines
564 B
TypeScript
import type { PageParam } from '@/api';
|
||
|
||
/**
|
||
*
|
||
*/
|
||
export interface ThinkCarousel {
|
||
//
|
||
id?: number;
|
||
// 轮播图标题
|
||
title?: string;
|
||
// 轮播图
|
||
img?: string;
|
||
// 轮播图链接
|
||
link?: string;
|
||
// 小程序APPID
|
||
appid?: string;
|
||
// 排序
|
||
sort?: number;
|
||
// 1显示,2不显示
|
||
status?: string;
|
||
// 类型:1资讯,2商城,3小程序
|
||
type?: string;
|
||
//
|
||
createTime?: number;
|
||
//
|
||
updateTime?: number;
|
||
}
|
||
|
||
/**
|
||
* 搜索条件
|
||
*/
|
||
export interface ThinkCarouselParam extends PageParam {
|
||
id?: number;
|
||
keywords?: string;
|
||
}
|