|
@ -666,11 +666,11 @@ public class QuestionService implements IQuestionService { |
|
|
//超出占比
|
|
|
//超出占比
|
|
|
parameter.setBeyondProportion(htPatientCanvas.getBeyondProportion()); |
|
|
parameter.setBeyondProportion(htPatientCanvas.getBeyondProportion()); |
|
|
//画图总时长
|
|
|
//画图总时长
|
|
|
parameter.setTotalDuration(endTime); |
|
|
parameter.setTotalDuration(endTime + parameter.getStartDuration()); |
|
|
//总笔画数
|
|
|
//总笔画数
|
|
|
parameter.setLineNums(canvasPoints.size()); |
|
|
parameter.setLineNums(canvasPoints.size()); |
|
|
//共几分钟
|
|
|
//共几分钟
|
|
|
double d = (double) endTime / 1000 / 60; |
|
|
double d = (double) (parameter.getTotalDuration()) / 1000 / 60; |
|
|
//每分钟几笔
|
|
|
//每分钟几笔
|
|
|
parameter.setAveTimes((int) Math.round(canvasPoints.size() / d)); |
|
|
parameter.setAveTimes((int) Math.round(canvasPoints.size() / d)); |
|
|
//每笔数据
|
|
|
//每笔数据
|
|
|