You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
648 B
42 lines
648 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 广告位
|
|
*/
|
|
export interface Ad {
|
|
adId?: number;
|
|
name?: string;
|
|
adType?: string;
|
|
type?: string;
|
|
width?: string;
|
|
height?: string;
|
|
path?: string;
|
|
images?: string;
|
|
userId?: number;
|
|
sortNumber?: number;
|
|
comments?: string;
|
|
status?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 图片列表
|
|
*/
|
|
export interface AdItem {
|
|
uid?: number;
|
|
url?: string;
|
|
path?: string;
|
|
status?: string;
|
|
}
|
|
|
|
/**
|
|
* 广告位搜索条件
|
|
*/
|
|
export interface AdParam extends PageParam {
|
|
adId?: string;
|
|
name?: number;
|
|
type?: number;
|
|
adType?: string;
|
|
userId?: number;
|
|
}
|