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.
43 lines
735 B
43 lines
735 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 课程管理
|
|
*/
|
|
export interface Lesson {
|
|
// ID
|
|
lessonId?: number;
|
|
// 课程名称
|
|
lessonName?: string;
|
|
// 图标
|
|
image?: string;
|
|
// 分类ID
|
|
categoryId?: number;
|
|
// 老师ID
|
|
teacherId?: number;
|
|
// 商户ID
|
|
merchantId?: number;
|
|
// 上课时间
|
|
startTime?: string;
|
|
// 报名人数上限
|
|
maxNumber?: number;
|
|
// 上课地点
|
|
address?: string;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 排序号
|
|
sortNumber?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 课程管理搜索条件
|
|
*/
|
|
export interface LessonParam extends PageParam {
|
|
lessonId?: number;
|
|
keywords?: string;
|
|
}
|