Loading

摘要: @JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN) private Date time; 阅读全文
posted @ 2021-07-26 21:03 myEsn2E9 阅读(149) 评论(0) 推荐(0) 编辑
摘要: MybatisPlus:使用SQL保留字(关键字)的操作 必须要手动在 entity 的字段上加注解,否则最终会报错,因为 mybatis 或者 mybatis plus 不会自动处理 阅读全文
posted @ 2021-07-26 21:02 myEsn2E9 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 【Mybatis】如何在Mybatis XML文件中使用枚举变量 阅读全文
posted @ 2021-07-26 18:31 myEsn2E9 阅读(571) 评论(0) 推荐(0) 编辑
摘要: union 会删除重复数据 union all 不会删除重复数据 select * from ( select *,'a' as kind from tablea where name is not null union all select *, 'b' as kind from tableb w 阅读全文
posted @ 2021-07-26 18:18 myEsn2E9 阅读(56) 评论(0) 推荐(0) 编辑