|
@@ -16,6 +16,7 @@ export interface ICourseDataRequest {
|
|
|
subtitle?: string; //副标题
|
|
subtitle?: string; //副标题
|
|
|
summary?: string; //副标题
|
|
summary?: string; //副标题
|
|
|
content?: string | null;
|
|
content?: string | null;
|
|
|
|
|
+ sign_up_message?: string | null;
|
|
|
cover?: string; //封面图片文件名
|
|
cover?: string; //封面图片文件名
|
|
|
teacher_id?: string; //UserID
|
|
teacher_id?: string; //UserID
|
|
|
publicity: number; //类型-公开/内部
|
|
publicity: number; //类型-公开/内部
|
|
@@ -47,6 +48,7 @@ export interface ICourseDataResponse {
|
|
|
title: string; //标题
|
|
title: string; //标题
|
|
|
subtitle: string; //副标题
|
|
subtitle: string; //副标题
|
|
|
summary?: string; //副标题
|
|
summary?: string; //副标题
|
|
|
|
|
+ sign_up_message?: string | null; //报名弹窗消息
|
|
|
teacher?: IUser; //UserID
|
|
teacher?: IUser; //UserID
|
|
|
course_count?: number; //课程数
|
|
course_count?: number; //课程数
|
|
|
publicity: number; //类型-公开/内部
|
|
publicity: number; //类型-公开/内部
|
|
@@ -56,6 +58,7 @@ export interface ICourseDataResponse {
|
|
|
channel_id: string; //标准答案ID
|
|
channel_id: string; //标准答案ID
|
|
|
channel_name?: string; //文集标题
|
|
channel_name?: string; //文集标题
|
|
|
channel_owner?: IStudio; //文集拥有者
|
|
channel_owner?: IStudio; //文集拥有者
|
|
|
|
|
+ studio?: IStudio; //课程拥有者
|
|
|
start_at: string; //课程开始时间
|
|
start_at: string; //课程开始时间
|
|
|
end_at: string; //课程结束时间
|
|
end_at: string; //课程结束时间
|
|
|
sign_up_start_at: string; //报名开始时间
|
|
sign_up_start_at: string; //报名开始时间
|