|
@@ -9580,6 +9580,8 @@ orgName?: string;
|
|
|
semesterName?: string;
|
|
|
/** 开始时间 */
|
|
|
startTime?: string;
|
|
|
+/** 状态(-1:未发布,1:进行中,0,暂停) */
|
|
|
+status?: number;
|
|
|
}
|
|
|
|
|
|
type EvaluateResultSaveDto = {
|
|
@@ -13025,14 +13027,6 @@ total?: number;
|
|
|
totalPage?: number;
|
|
|
}
|
|
|
|
|
|
-type PageOutput<ResultViewingPageVo> = {
|
|
|
-currentPage?: number;
|
|
|
-list?: ResultViewingPageVo[];
|
|
|
-pageSize?: number;
|
|
|
-total?: number;
|
|
|
-totalPage?: number;
|
|
|
-}
|
|
|
-
|
|
|
type PageOutput<RoomBedCheckRecordPageVo> = {
|
|
|
currentPage?: number;
|
|
|
list?: RoomBedCheckRecordPageVo[];
|
|
@@ -14645,14 +14639,16 @@ objectIdCN?: string;
|
|
|
planExecuterNum?: number;
|
|
|
/** 题目名称 */
|
|
|
problem?: string;
|
|
|
+/** 状态(2:已评分,0:未评分) */
|
|
|
+status?: number;
|
|
|
/** 单个被评对象的每一道题的平均得分 */
|
|
|
-sumScore?: number;
|
|
|
+sumScore?: string;
|
|
|
/** 单个被评对象的综合平均得分 */
|
|
|
-synthesisScore?: number;
|
|
|
+synthesisScore?: string;
|
|
|
/** 标题名称 */
|
|
|
topic?: string;
|
|
|
/** 单个被评对象的每个标题的平均得分 */
|
|
|
-topicScore?: number;
|
|
|
+topicScore?: string;
|
|
|
}
|
|
|
|
|
|
type RoomBedCheckRecordEchoVo = {
|