摘要:
@JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN) private Date time; 阅读全文
摘要:
MybatisPlus:使用SQL保留字(关键字)的操作 必须要手动在 entity 的字段上加注解,否则最终会报错,因为 mybatis 或者 mybatis plus 不会自动处理 阅读全文
摘要:
【Mybatis】如何在Mybatis XML文件中使用枚举变量 阅读全文
摘要:
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 阅读全文