Initial commit
This commit is contained in:
31
src/api/cms/ad/model/index.ts
Normal file
31
src/api/cms/ad/model/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
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 AdParam extends PageParam {
|
||||
adId?: string;
|
||||
name?: number;
|
||||
type?: number;
|
||||
userId?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user