摘要: Background Image Plus idea背景图 CodeGlance 右侧代码地图 Translation 翻译 Rainbow Brackets 彩虹色括号 Grep Console: 日志着色控制台显示 Statistic 代码统计 Markdown Navigator Markdo 阅读全文
posted @ 2021-11-30 20:11 baissy 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 普通索引INDEX ALTER table 表名 ADD INDEX 索引名(列名) 唯一索引 UNIQUE ALTER TABLE 表名 ADD UNIQUE (列名) 组合唯一索引 ALTER TABLE 表名 ADD UNIQUE (列名1,列名2); 删除索引 DROP INDEX 索引名 阅读全文
posted @ 2021-11-30 20:10 baissy 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1, 查看防火墙状态: firewall-cmd --state systemctl status firewalld.service 2, 开启防火墙: systemctl start firewalld.service 3,设置开机自启: systemctl enable firewalld.s 阅读全文
posted @ 2021-11-30 20:09 baissy 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、返回参数 1、Long转String @JsonSerialize(using = ToStringSerializer.class) 2、时间格式转换 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8" ) 二、接收参数 1 阅读全文
posted @ 2021-11-30 20:06 baissy 阅读(674) 评论(0) 推荐(0) 编辑
摘要: 判断 <if test="dto.value != null"></if> <if test="dto.value == null"></if> 枚举值比较 <if test="dto.value == @com.baiawnx.common.enums.TypeEnum@one"></if> if 阅读全文
posted @ 2021-11-30 20:04 baissy 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一、基本使用 1. 跟据某个属性分组OfficeId Map<String, List<IncomeSumPojo>> collect = list.stream().collect(Collectors.groupingBy(IncomeSumPojo::getOfficeId)); 2. 根据某 阅读全文
posted @ 2021-11-30 20:02 baissy 阅读(87) 评论(0) 推荐(0) 编辑