|
@@ -28,6 +28,7 @@ import com.zhongzheng.modules.grade.bo.*;
|
|
import com.zhongzheng.modules.grade.domain.ClassGrade;
|
|
import com.zhongzheng.modules.grade.domain.ClassGrade;
|
|
import com.zhongzheng.modules.grade.service.*;
|
|
import com.zhongzheng.modules.grade.service.*;
|
|
import com.zhongzheng.modules.grade.vo.*;
|
|
import com.zhongzheng.modules.grade.vo.*;
|
|
|
|
+import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.entity.ClientLoginUser;
|
|
import com.zhongzheng.modules.user.entity.ClientLoginUser;
|
|
import io.swagger.models.auth.In;
|
|
import io.swagger.models.auth.In;
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.RequiredArgsConstructor;
|
|
@@ -142,6 +143,19 @@ public class ClassGradeController extends BaseController {
|
|
public AjaxResult<List<ClassNpUserInfoVo>> otherClassUserList(ClassNpUserInfoBo bo) {
|
|
public AjaxResult<List<ClassNpUserInfoVo>> otherClassUserList(ClassNpUserInfoBo bo) {
|
|
return AjaxResult.success(iClassGradeService.otherClassUserList(bo));
|
|
return AjaxResult.success(iClassGradeService.otherClassUserList(bo));
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * 查询其他平台班级详情
|
|
|
|
+ */
|
|
|
|
+ @ApiOperation("统计")
|
|
|
|
+ @GetMapping("/count/periodPlush")
|
|
|
|
+ public AjaxResult getPeriodPlush(UserQueryBo bo) {
|
|
|
|
+ AjaxResult ajax = AjaxResult.success();
|
|
|
|
+ int notPlush = iClassGradeUserService.selectPeriodNotPush(bo).size();
|
|
|
|
+ int plush = iClassGradeUserService.selectPeriodNotPush(bo).size();
|
|
|
|
+ ajax.put("notPlush",notPlush);
|
|
|
|
+ ajax.put("Plush",plush);
|
|
|
|
+ return ajax;
|
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
/**
|
|
* 导出查询其他平台班级详情
|
|
* 导出查询其他平台班级详情
|