|
@@ -45,6 +45,7 @@ export interface Answer extends QuizContent {
|
|
|
profitPercent?: number;
|
|
profitPercent?: number;
|
|
|
totalProfitAmount?: number;
|
|
totalProfitAmount?: number;
|
|
|
totalProfitPercent?: number;
|
|
totalProfitPercent?: number;
|
|
|
|
|
+ username?: string;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 教室数据
|
|
// 教室数据
|
|
@@ -58,6 +59,7 @@ export interface ClassroomData {
|
|
|
// 累计结果
|
|
// 累计结果
|
|
|
export interface CumulativeResult {
|
|
export interface CumulativeResult {
|
|
|
userId: number;
|
|
userId: number;
|
|
|
|
|
+ username?: string;
|
|
|
totalProfitAmount: number;
|
|
totalProfitAmount: number;
|
|
|
totalProfitPercent: number;
|
|
totalProfitPercent: number;
|
|
|
-}
|
|
|
|
|
|
|
+}
|