RuoYi/doc/修改笔记.txt

67 lines
1.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

2020.12.09
1、修改生成代码时 createBy 、createTime 在页面 不显示
2020.12.16
Cron表达式的介绍与使用
2、https://blog.csdn.net/qq_39135287/article/details/95664533
3、 BootStrap 日期时间控件 datetimepicker 禁用 及 日期时间格式 yyyy-MM-dd hh:ii:ss
$("input[name='updateTime']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='updateTime']").prop('disabled', true);
4、 Java8 使用 stream().filter()过滤List对象查找符合条件的对象集合
//查找身高在1.8米及以上的男生
List<StudentInfo> boys = studentList.stream().filter(s->s.getGender() && s.getHeight() >= 1.8).collect(Collectors.toList());
//输出查找结果
StudentInfo.printStudents(boys);
// 取身份信息
SysUser user = ShiroUtils.getSysUser();
// 根据用户id取出菜单
List<SysMenu> menus = menuService.selectMenusByUser(user);
mmap.put("menus", menus);
mmap.put("user", user);
js 中有没有替换String.format("%05d",“”)的方法啊
=============== 相关资料 ========================================================================
Velocity教程
https://www.ctolib.com/docs-Velocity-c-220510.html
Thymeleaf 的基本用法
https://www.ctolib.com/topics-137458.html
IntelliJ IDEA 18个常用插件动图演示让效率成为习惯
https://www.ctolib.com/topics-141243.html
j2eefast开源
https://gitee.com/zhouhuanOGP/J2EEFAST
附件和图片上传我全套扣的j2eefast的ruoyi的用着太怪了
登录 验证是用滑块
阿里云开发者成长计划
https://developer.aliyun.com/plan/grow-up?spm=5176.19720258.J_8058803260.1292.1d722c4ae1PLsq
VueOA
https://blog.csdn.net/aria_miazzy/article/details/104960221
https://gitee.com/yunwisdoms/oa-front-service