修改开关及提醒查询
This commit is contained in:
parent
058a61ca4f
commit
140a1c7f06
|
@ -68,6 +68,7 @@ public class KcKechengtixingdingyueController extends JeecgController<KcKechengt
|
|||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||
HttpServletRequest req) {
|
||||
QueryWrapper<KcKechengtixingdingyue> queryWrapper = QueryGenerator.initQueryWrapper(kcKechengtixingdingyue, req.getParameterMap());
|
||||
queryWrapper.apply("username is not null");
|
||||
Page<KcKechengtixingdingyue> page = new Page<KcKechengtixingdingyue>(pageNo, pageSize);
|
||||
IPage<KcKechengtixingdingyue> pageList = kcKechengtixingdingyueService.page(page, queryWrapper);
|
||||
return Result.OK(pageList);
|
||||
|
|
|
@ -44,9 +44,11 @@ public class KcKechengtixingdingyue implements Serializable {
|
|||
/**课前提醒*/
|
||||
@Excel(name = "课前提醒", width = 15)
|
||||
@ApiModelProperty(value = "课前提醒")
|
||||
@Dict(dicCode = "sfcj")
|
||||
private java.lang.String kqtx;
|
||||
/**每日课程提醒*/
|
||||
@Excel(name = "每日课程提醒", width = 15)
|
||||
@ApiModelProperty(value = "每日课程提醒")
|
||||
@Dict(dicCode = "sfcj")
|
||||
private java.lang.String mrkctx;
|
||||
}
|
||||
|
|
|
@ -107,4 +107,5 @@ public class KcSysConfig implements Serializable {
|
|||
@Excel(name = "智慧教室播放错误提示文字", width = 15)
|
||||
@ApiModelProperty(value = "智慧教室播放错误提示文字")
|
||||
private java.lang.String videoPlayErrTitle;
|
||||
private java.lang.String flag9;//今日课表听课按钮
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue