@TableId(type=IdType.AUTO) //声明主键自增长
@TableField(select = false) //查询时,则不返回该字段的值
@TableField(value = "email") //通过tableField进行字段不一致的映射
@TableField(exist = false) //设置该字段在数据库表中不存在
@TableField(update="now()")
//使用数据库时间输出 SQL 为:update 表 set 字段=now() where ...
//TableField 注解新增属性 condition 预处理 WHERE 实体条件自定义运算规则,下面会有代码讲解
@TableField(condition = SqlCondition.LIKE)
private String name;
//输出 SQL 为:select 表 where name LIKE CONCAT('%',值,'%')
扫描二维码,在手机上阅读!
评论