mybatis:@TableField(exist=false)注解加在bean屬性上慎璧,表示當(dāng)前屬性不是數(shù)據(jù)庫的字段
/**
* 商品數(shù)量
*/
private Integer productCount;
/**
* 子節(jié)點
*/
@TableField(exist=false)
private List<CategoryEntity> children;
其它類型的注解
@TableField(exist = false):表示該屬性不為數(shù)據(jù)庫表字段
@TableField(exist = true):表示該屬性為數(shù)據(jù)庫表字段想鹰。
@TableName:數(shù)據(jù)庫表相關(guān)
@TableId:表主鍵標(biāo)識
@TableField:表字段標(biāo)識
@TableLogic:表字段邏輯處理注解(邏輯刪除)
Hibernate實體類忽略非數(shù)據(jù)庫字段注解:
@Transient:該注解可以加在屬性上或者get方法上
來源:https://blog.csdn.net/weixin_43329834/article/details/112559819