mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-23 17:55:44 +08:00
feat:修改完成人数统计错误
This commit is contained in:
@@ -69,7 +69,7 @@ public class CourseStatDao extends BaseDao<StudyCourse> {
|
|||||||
CourseFinishCountDto dto = new CourseFinishCountDto();
|
CourseFinishCountDto dto = new CourseFinishCountDto();
|
||||||
dto.setContentName(objs[0] != null ? (String) objs[0] : "");
|
dto.setContentName(objs[0] != null ? (String) objs[0] : "");
|
||||||
dto.setContentId(((BigInteger) objs[1]).toString());
|
dto.setContentId(((BigInteger) objs[1]).toString());
|
||||||
dto.setFinishCount(objs[2] != null ? ((Number) objs[1]).intValue() : 0);
|
dto.setFinishCount(objs[2] != null ? ((Number) objs[2]).intValue() : 0);
|
||||||
dto.setContentType((Integer) objs[3]);
|
dto.setContentType((Integer) objs[3]);
|
||||||
dtoList.add(dto);
|
dtoList.add(dto);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user