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