Files
guofu-admin/src/api/think/thinkCarousel/model/index.ts

36 lines
564 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}