首页
mac
it
登录
6mi
u
盘
搜
搜 索
it
通用Mapper中的注解使用
通用Mapper中的注解使用
mac
2025-03-27
15
//设置表名
@Table
(
name
=
"tb_user"
)
//设置id
@Id
//设置为自增字段
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
//将对象转为json时,不包含此字段,需要依赖jackson-annotations
@JsonIgnore
//设置字段名
@Column
//非数据库中字段
@Transient
//插入时返回id
@KeySql
(
useGeneratedKeys
=
true
)
转载请注明原文地址: https://mac.8miu.com/read-501434.html
最新回复
(
0
)