摘要: ModelMapper modelMapper = new ModelMapper();modelMapper.getConfiguration().setFullTypeMatchingRequired(true);modelMapper.getConfiguration().setMatchin 阅读全文
posted @ 2020-11-09 15:23 蹉~跎 阅读(620) 评论(0) 推荐(0) 编辑
摘要: “Missing semicolon.” : “缺少分号.”, “Use the function form of \”use strict\”.” : “使用标准化定义function.”, “Unexpected space after ‘-’.” : “在’-'后面不应出现空格.”, “Exp 阅读全文
posted @ 2020-11-02 11:26 蹉~跎 阅读(156) 评论(0) 推荐(0) 编辑
摘要: List<CourseLessonExt> Taglist=list.stream().filter(CourseLessonExt->(CourseLessonExt.getType()==3)) .collect(Collectors.toList()); list为要筛选的list对象; Co 阅读全文
posted @ 2020-10-29 17:09 蹉~跎 阅读(3817) 评论(0) 推荐(0) 编辑
摘要: $scope.search = function(searchObj){ console.log($scope.Temp.corporationId); $scope.searchObj.name=$scope.Temp.corporationId; }console.log($scope.Temp 阅读全文
posted @ 2020-10-22 10:01 蹉~跎 阅读(192) 评论(0) 推荐(0) 编辑
摘要: List<OrderInfo> list = orderInfoService.selectPnum();PageList<OrderInfo> orderList = orderInfoService.listPage(orderInfo, pageBounds); for (OrderInfo 阅读全文
posted @ 2019-04-28 14:02 蹉~跎 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 可能是因为数据库存在外键无法插入 阅读全文
posted @ 2019-04-08 16:07 蹉~跎 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 编码相同取id最大的 SELECT * from project_financial_status p WHERE NOT EXISTS (SELECT * FROM project_financial_status WHERE id >p.id AND p.project_code = proje 阅读全文
posted @ 2019-01-20 14:19 蹉~跎 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 比较大小 int a = bigdemical.compareTo(bigdemical2)a = -1,表示bigdemical小于bigdemical2;a = 0,表示bigdemical等于bigdemical2;a = 1,表示bigdemical大于bigdemical2; 阅读全文
posted @ 2019-01-11 15:28 蹉~跎 阅读(255) 评论(0) 推荐(0) 编辑
摘要: //年月日转换 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); Date d = dateFormat.parse(statisticsDate); SimpleDateFormat d1 = new SimpleD 阅读全文
posted @ 2019-01-11 15:27 蹉~跎 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 用<![CDATA[ ]]>标识比如:<![CDATA[ where auctionEndTime < now()]]> 另外一种方法就是使用转义字符 < <= > >= & ' " &lt; &lt;= &gt; &gt;= &amp; &apos; &quot; &lt; &lt;= &gt; 阅读全文
posted @ 2019-01-09 17:58 蹉~跎 阅读(452) 评论(0) 推荐(0) 编辑