|
@@ -62,11 +62,20 @@ public class CourseAuditRecordServiceImpl extends ServiceImpl<CourseAuditRecordM
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<CourseAuditRecord> queryCourseAuditRecordList(Map param) {
|
|
|
|
|
|
|
+ public Page<Map<String,Object>> courceDownList(Map param)
|
|
|
|
|
+ {
|
|
|
|
|
+ return courseAuditRecordMapper.courceDownList(param,CommonPageRequest.defaultPage());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<CourseAuditRecord> wrapperList(Map param) {
|
|
|
QueryWrapper<CourseAuditRecord> queryWrapper = new QueryWrapper<>();
|
|
QueryWrapper<CourseAuditRecord> queryWrapper = new QueryWrapper<>();
|
|
|
if (ObjectUtil.isNotEmpty(param.get("verifyStatus"))) {
|
|
if (ObjectUtil.isNotEmpty(param.get("verifyStatus"))) {
|
|
|
queryWrapper.lambda().eq(CourseAuditRecord::getVerifyStatus, param.get("verifyStatus"));
|
|
queryWrapper.lambda().eq(CourseAuditRecord::getVerifyStatus, param.get("verifyStatus"));
|
|
|
}
|
|
}
|
|
|
|
|
+ if (ObjectUtil.isNotEmpty(param.get("authType"))) {
|
|
|
|
|
+ queryWrapper.lambda().eq(CourseAuditRecord::getAuthType, param.get("authType"));
|
|
|
|
|
+ }
|
|
|
if (ObjectUtil.isNotEmpty(param.get("courseId"))) {
|
|
if (ObjectUtil.isNotEmpty(param.get("courseId"))) {
|
|
|
queryWrapper.lambda().eq(CourseAuditRecord::getCourseId, param.get("courseId"));
|
|
queryWrapper.lambda().eq(CourseAuditRecord::getCourseId, param.get("courseId"));
|
|
|
}
|
|
}
|