Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 594 Bytes

经验总结.md

File metadata and controls

11 lines (8 loc) · 594 Bytes

update_time 问题

  • ��update_timecreate_time 两字段业务代码�中尽量不要更新,��业务上使用时,尽量添加业务字段。
  • 最好在实体类中就不要包含这两个�变量 避免在查询-更新并发的时候错误的更新着update_time字段

Mybatis映射问题

�- 使用@Select注解时 不要直接 �select * from �需要注意对字段的映射 select user_id as userId from 否则虽然能��查看数据当时无法获取值。 ���- 除了使用 as 重命名 还可以使用@ResultMap("BaseResultMap")注解

StrSubstitutor