通用Mapper中的注解使用

mac2025-03-27  15

//设置表名 @Table(name = "tb_user") //设置id @Id //设置为自增字段 @GeneratedValue(strategy = GenerationType.IDENTITY) //将对象转为json时,不包含此字段,需要依赖jackson-annotations @JsonIgnore //设置字段名 @Column //非数据库中字段 @Transient //插入时返回id @KeySql(useGeneratedKeys = true)
最新回复(0)