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.

73 lines
1.1 KiB

10 months ago
/**
*
*/
export interface ItemObject {
[key: string]: string;
}
/**
*
*/
export interface ItemObjectNumber {
[key: number]: number;
}
/**
*
*/
export interface PageResult<T> {
/**
*
*/
list: T
/**
*
*/
total: number
}
/**
*
*/
export interface PageQuery {
page?: number
limit?: number
type?: string | number| null
cid?: string
merId?: string | number
category?: string | number
keywords?:string | null
keyword?:string | undefined
couponId?: string | number
userCouponId?: string | number
productId?: string | number | null
}
/**
*
*/
export interface FromData {
id: number
name?: string
type?: string
isShow?: boolean
content?:string
}
/**
*
*/
export interface UploadImageData {
extName: string
fileName: string
fileSize: number
type: string
url:string
}
/**
*
*/
export interface CaptchaVerification {
captchaVerification: string
}