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