摘要: List<User> lists = new ArrayList<>(); for (int i = 0; i < 40000; i++) { if (i%2 == 0){ lists.add(new User("aa1",1)); }else { lists.add(new User("aa2", 阅读全文
posted @ 2021-06-17 17:37 凌波漫步~ 阅读(3932) 评论(0) 推荐(1) 编辑
摘要: long startTime = System.currentTimeMillis(); //获取开始时间doing //你的执行代码long endTime = System.currentTimeMillis(); //获取结束时间System.out.println("程序运行时间:" + ( 阅读全文
posted @ 2021-06-17 10:56 凌波漫步~ 阅读(339) 评论(0) 推荐(0) 编辑
摘要: mybatis 必须加上resultType<select id="selectStoreListByCustno" parameterType="java.util.List" resultType="java.util.List"> </select> 阅读全文
posted @ 2021-06-15 18:14 凌波漫步~ 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/liangss/p/5120732.html 阅读全文
posted @ 2021-06-15 16:29 凌波漫步~ 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Map<Object, Long> a1Map = groupStoreVisiList.stream().filter(map->map.getA1() != null)//这里需要加个判断,该字段不能为null .collect(Collectors.groupingBy(p -> p.getA 阅读全文
posted @ 2021-06-15 10:07 凌波漫步~ 阅读(5281) 评论(0) 推荐(0) 编辑
摘要: 1、表 添加字段(字段类型、长度、默认值、注释) ALTER TABLE 表名 ADD 字段名 字段类型(字段长度) DEFAULT 默认值 COMMENT '注释' 例如:ALTER TABLE order ADD code CHAR(6) DEFAULT NULL COMMENT '优惠码' A 阅读全文
posted @ 2021-06-11 15:13 凌波漫步~ 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 在跳转后页面添加:mounted(){this.getList();//重新加载数据}或者activated(){this.getList();//重新加载数据} 阅读全文
posted @ 2021-06-09 11:55 凌波漫步~ 阅读(7548) 评论(0) 推荐(0) 编辑
摘要: alter table table1 modify column column1 decimal(10,1) DEFAULT NULL COMMENT '注释'; 阅读全文
posted @ 2021-06-07 18:17 凌波漫步~ 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 想要这种: http://188.188.2.49/Record/2013/09/02/10/20130902_100746_PYU.wav 但出现 http://localhost:8090/xxx/xxx/188.188.2.49/Record/2013/09/02/10/20130902_10 阅读全文
posted @ 2021-06-03 16:01 凌波漫步~ 阅读(1125) 评论(0) 推荐(0) 编辑
摘要: drop table if exists per_manage;create table per_manage ( id varchar(32) comment 'id',hosp_dept_code varchar(32) default null comment '人员编码', name var 阅读全文
posted @ 2021-06-02 11:58 凌波漫步~ 阅读(59) 评论(0) 推荐(0) 编辑