Files
guofu-admin/src/api/think/thinkCoachImgs/model/index.ts
2024-08-23 22:28:24 +08:00

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;
}