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.
70 lines
1.1 KiB
70 lines
1.1 KiB
/* generated using openapi-typescript-codegen -- do not edit */ |
|
/* istanbul ignore file */ |
|
/* tslint:disable */ |
|
/* eslint-disable */ |
|
/** |
|
* 教师创建课程参数实体 |
|
*/ |
|
export type CoursesDTO = { |
|
/** |
|
* 考核类型:考试 考查 |
|
*/ |
|
assessmenttype: string; |
|
/** |
|
* 考核方式:开卷 闭卷 其他 |
|
*/ |
|
assessmentway: string; |
|
/** |
|
* 课程类别:专业教育 通识教育 |
|
*/ |
|
category: string; |
|
/** |
|
* 课程学时 |
|
*/ |
|
classhours: number; |
|
/** |
|
* 课程编码 |
|
*/ |
|
code: string; |
|
/** |
|
* 创建日期 |
|
*/ |
|
createTime?: string; |
|
/** |
|
* 课程学分 |
|
*/ |
|
credit: number; |
|
/** |
|
* 课程简介 |
|
*/ |
|
description?: string; |
|
/** |
|
* id |
|
*/ |
|
id?: string; |
|
/** |
|
* 图片 |
|
*/ |
|
img?: string; |
|
/** |
|
* 课程名称 |
|
*/ |
|
name: string; |
|
/** |
|
* 课程性质:必修,选修,任修 |
|
*/ |
|
nature: string; |
|
/** |
|
* 负责教师 |
|
*/ |
|
teacher?: string; |
|
/** |
|
* 教学方法 |
|
*/ |
|
teachermethod?: string; |
|
/** |
|
* 教学方式 |
|
*/ |
|
teacherway?: string; |
|
}; |
|
|
|
|