摘要: 实体类注解:@TableField(exist = false)表示不是数据库表字段 //一般情况下就用这个注解,默认表单传进来的数据@TableField("role_name") private String roleName;//一般针对主键id,会有特别的注解@TableId,type类型有 阅读全文
posted @ 2023-07-26 10:55 up-zyn 阅读(3) 评论(0) 推荐(0) 编辑
摘要: //提交,当前的对象到数据库//.save()方法是IService接口提供的,而EmployeeService接口继承了IService接口employeeService.save(employee); /*default boolean save(T entity) { return SqlHe 阅读全文
posted @ 2023-07-26 10:22 up-zyn 阅读(96) 评论(0) 推荐(0) 编辑
摘要: http://wed.xjx100.cn/news/36110.html?action=onClick 阅读全文
posted @ 2023-07-13 16:58 up-zyn 阅读(4) 评论(0) 推荐(0) 编辑
摘要: INFO Starting development server... 10% building 2/3 modules 1 active ...\@vue\cli-plugin-eslint\node_modules\eslint-loader\index.js??ref--13-0!D:\202 阅读全文
posted @ 2023-06-01 14:37 up-zyn 阅读(478) 评论(0) 推荐(0) 编辑
摘要: http://www.cbww.cn/news/33084.shtml 阅读全文
posted @ 2023-06-01 14:31 up-zyn 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1.安装nodejs--注意nodejs的版本--尽量不要用高版本的,坑多2.验证nodejs是都安装成功 cmd node -v--出现版本号就说明安装成功2.安装vscode 类似idea--运行工具--打开前端项目如何运行vue项目(运行githug下载的vue项目) - CodeAntenn 阅读全文
posted @ 2023-06-01 14:30 up-zyn 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1,ctroller-->如下 @GetMapping(value = "/createTlzExcel")public String createTlzExcel(HttpServletResponse response) throws Exception { Map<String, Object 阅读全文
posted @ 2022-10-08 17:34 up-zyn 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 时间倒叙 https://blog.csdn.net/tjcyjd/article/details/6804690 1.在实体类里面加数据, 固定的不用改public static class Caopty implements Comparator{ @Overridepublic int com 阅读全文
posted @ 2022-03-23 13:59 up-zyn 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 两种都行1. List<String> strings = 你要去重的集合.stream().distinct().collect(Collectors.toList()); 2. List<String> strings = new ArrayList<>(new TreeSet<>(你要去重的集 阅读全文
posted @ 2022-03-16 17:32 up-zyn 阅读(45) 评论(0) 推荐(0) 编辑
摘要: IDEA项目结构后出现 0% methods,0% lines covered, 如图 解决上述问题,只需要使用快捷键 Ctrl + Alt + F6,在弹出窗口中取消项目前面的√, 点击show selected 后续会持续更新一些IDEA中的操作。如果不行:依次点击View+Tool Windo 阅读全文
posted @ 2022-03-01 16:24 up-zyn 阅读(352) 评论(0) 推荐(0) 编辑