提交 4f04636a 作者: zhanglingkun

功能:通用分类接口

上级 8e1e520b
......@@ -60,7 +60,7 @@ export type updateCurriculumType = InterFunction<
>;
// V1.0.1课程技能列表
export type treeCurriculumSkillType = InterFunction<
NonNullable<unknown>,
any,
{
id: number;
skillsName: string;
......@@ -73,3 +73,22 @@ export type treeCurriculumSkillType = InterFunction<
>;
// V1.0.1删除课程
export type removeCurriculumType = InterFunction<{ id: number }, NonNullable<unknown>>;
// 根据类型获取各个目录及分类信息
export type queryCategoryInfoByType = InterFunction<
{
/**
* 类型:1:作业服务 2:设备 3:培训 4:产品商城
*/
type: number
},
{
directoryId: number
name: string
categoriesInfoListDTO: Array<{
id: number
directoryId: number
name: string
icon: string
}>
}[]
>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论