其他分享
首页 > 其他分享> > 使用TK框架中selectByPrimaryKey

使用TK框架中selectByPrimaryKey

作者:互联网

使用TK框架中selectByPrimaryKey(Object key),需要注意要在entity里注明哪个字段是主键,否则会不知道哪个是PrimaryKey会随机一个字段就报错。

 

 

 如下:

引入

import javax.persistence.Id;
/**
* 主键ID
*/
@Id
protected String id;

 

 

标签:selectByPrimaryKey,框架,字段,TK,哪个,主键
来源: https://www.cnblogs.com/syingBlog/p/12370853.html