优化网站导航模块

This commit is contained in:
2024-08-23 22:28:24 +08:00
parent 1d81fa9270
commit 13832d9de0
964 changed files with 90774 additions and 31362 deletions

View File

@@ -0,0 +1,41 @@
import type { PageParam } from '@/api';
/**
* 课程分类
*/
export interface CourseCategory {
// 商品分类ID
id?: number;
// 分类名称
name?: string;
// 分类标识
code?: string;
// 分类图片
image?: string;
// 上级分类ID
parentId?: number;
// 排序(数字越小越靠前)
sortNumber?: number;
// 备注
comments?: string;
// 是否推荐
recommend?: number;
// 状态, 0正常, 1禁用
status?: number;
// 是否删除, 0否, 1是
deleted?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
// 修改时间
updateTime?: string;
}
/**
* 课程分类搜索条件
*/
export interface CourseCategoryParam extends PageParam {
id?: number;
keywords?: string;
}