22 lines
325 B
TypeScript
22 lines
325 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 教练组相册
|
|
*/
|
|
export interface ThinkCoachImgs {
|
|
//
|
|
id?: number;
|
|
// 图片地址
|
|
path?: string;
|
|
// 关联id
|
|
cid?: number;
|
|
}
|
|
|
|
/**
|
|
* 教练组相册搜索条件
|
|
*/
|
|
export interface ThinkCoachImgsParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|