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.
24 lines
550 B
24 lines
550 B
/* generated using openapi-typescript-codegen -- do not edit */ |
|
/* istanbul ignore file */ |
|
/* tslint:disable */ |
|
/* eslint-disable */ |
|
/** |
|
* 分项目标,内容关联的知识点VO实体 |
|
*/ |
|
export type ObjectiveContentKnowVO = { |
|
contentKnowsData?: Array<ObjectiveContentKnowVO>; |
|
/** |
|
* 关联的知识点个数 |
|
*/ |
|
knowsNumber?: number; |
|
/** |
|
* 关联的知识点学时合计 |
|
*/ |
|
knowsTime?: number; |
|
objectiveOrContent?: string; |
|
/** |
|
* 关联的知识点学时占比 |
|
*/ |
|
persent?: string; |
|
}; |
|
|
|
|