|
|
@@ -54,7 +54,8 @@ public class FsCoursePlaySourceConfigController extends BaseController {
|
|
|
@RequestParam(required = false) String appid,
|
|
|
@RequestParam(required = false) Integer isMall,
|
|
|
@RequestParam(required = false, defaultValue = "1") Integer pageNum,
|
|
|
- @RequestParam(required = false, defaultValue = "10") Integer pageSize) {
|
|
|
+ @RequestParam(required = false, defaultValue = "10") Integer pageSize,
|
|
|
+ @RequestParam(required = false) Integer status) {
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("name", name);
|
|
|
params.put("appid", appid);
|
|
|
@@ -72,6 +73,9 @@ public class FsCoursePlaySourceConfigController extends BaseController {
|
|
|
}
|
|
|
params.put("userId", userId);
|
|
|
params.put("deptId", deptId);
|
|
|
+ if(status != null){
|
|
|
+ params.put("status", status);
|
|
|
+ }
|
|
|
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
List<FsCoursePlaySourceConfigVO> list = fsCoursePlaySourceConfigService.selectCoursePlaySourceConfigVOListByMap(params);
|