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.
 
 
 
 
 

51 lines
909 B

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ObjectiveContents_ } from './ObjectiveContents_';
/**
* 课程目标参数实体
*/
export type CourseObjectivesTreeVO = {
/**
* 目标内容列表
*/
contents?: Array<ObjectiveContents_>;
/**
* 课程id
*/
courseId?: string;
/**
* 课程目标
*/
courseObjectivesTrees?: Array<CourseObjectivesTreeVO>;
/**
* 是否有子节点
*/
hasChild?: number;
/**
* 内部编号
*/
id?: string;
/**
* 目标名称
*/
name?: string;
/**
* 父级节点
*/
pid?: string;
/**
* 毕业要求id
*/
requireid?: string;
/**
* 毕业要求
*/
temp?: string;
/**
* 目标类型
*/
type?: number;
};