Initial commit

This commit is contained in:
南宁网宿科技
2024-04-24 16:36:46 +08:00
commit 121348e011
991 changed files with 158700 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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;
}