摘要: public class test{ public static void main(String[] arg){ int num=0; BigDecimal tatalPrice=BigDecimal.ZERO; for(int i=1;i<=31;i++){ try { BigDecimal p 阅读全文
posted @ 2021-09-02 17:34 哎丫丫呀喂 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/hanchaohan/2130916 阅读全文
posted @ 2021-09-02 17:20 哎丫丫呀喂 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 如何改变element-ui框架的message弹框提示时间_zuo_zuo_blog的博客-CSDN博客 http://element-ui.cn/#/zh-CN/component/message 官网文档 示例: this.$Message.error({duration:5,content: 阅读全文
posted @ 2021-09-02 17:19 哎丫丫呀喂 阅读(3070) 评论(0) 推荐(0) 编辑
摘要: List<ApproveInfoVO> list=voList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Approve 阅读全文
posted @ 2021-08-31 14:44 哎丫丫呀喂 阅读(123) 评论(0) 推荐(0) 编辑
摘要: eg:{1,'title1','test,test1,test2,test3'},{2,'title2','test,test2,test4,test5'} 输出:{'title2','test含义,test2含义'} SELECT t.setting_title, GROUP_CONCAT(lv. 阅读全文
posted @ 2021-08-09 10:47 哎丫丫呀喂 阅读(817) 评论(0) 推荐(0) 编辑
摘要: BigDecimal add = dataList.stream().map(lineVO::getRatio).reduce(BigDecimal.ZERO, BigDecimal::add); 阅读全文
posted @ 2021-07-09 10:02 哎丫丫呀喂 阅读(717) 评论(0) 推荐(0) 编辑
摘要: //produceTypeList-produceType:存在produceTypeList中不存在produceType中 let diff1 = produceTypeList.filter(function(v){ return produceType.indexOf(v) -1 }).jo 阅读全文
posted @ 2021-06-30 16:08 哎丫丫呀喂 阅读(334) 评论(0) 推荐(0) 编辑
摘要: public class test{ public static void main(String[] arg){ DateTimeFormatter sdf = DateTimeFormatter.ofPattern("yyyy-MM-dd");//格式化 LocalDate time = Loc 阅读全文
posted @ 2021-06-03 17:17 哎丫丫呀喂 阅读(746) 评论(0) 推荐(0) 编辑
摘要: public class test{ public static void main(String[] arg){ //Date转为LocalDateTime DateTimeFormatter sdf1 = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm 阅读全文
posted @ 2021-06-03 17:13 哎丫丫呀喂 阅读(285) 评论(0) 推荐(0) 编辑
摘要: //LocalDate转Date LocalDate nowLocalDate = LocalDate.now(); ZonedDateTime zonedDateTime = nowLocalDate.atStartOfDay(ZoneId.systemDefault()); Date srmPr 阅读全文
posted @ 2021-06-03 17:01 哎丫丫呀喂 阅读(2302) 评论(0) 推荐(0) 编辑