本篇内容介绍了“Mybatis-plustis-plus如何使用注解 @TableField(exist = false)”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
当表中午字段,但是实体类中需要这个成员变量时怎么办,可以使用mybatis-plus中@TableField(exist=false)
如下:
import com.baomidou.mybatisplus.annotation.TableField;import com.baomidou.mybatisplus.annotation.TableId;import com.baomidou.mybatisplus.annotation.TableLogic;import com.baomidou.mybatisplus.annotation.TableName;import java.io.Serializable;import java.util.Date;import java.util.List;import com.fasterxml.jackson.annotation.JsonInclude;import lombok.Data;@Data@TableName("pms_category")public class CategoryEntity implements Serializable { private static final long serialVersionUID = 1L; @TableId private Long catId; private String name; private Long parentCid; private Integer catLevel; @TableLogic(value = "1",delval = "0") private Integer showStatus; private Integer sort; private String icon; private String productUnit; private Integer productCount; @JsonInclude(JsonInclude.Include.NON_EMPTY) //children不为空则显示,要不然就不展示了。解决了,树下没有子树但是会有个空白的占位的情况 @TableField(exist=false) //树形展示用的,表中无此字段标识表中无次字段 private List<CategoryEntity> children;}
@TableField(exist=false) //树形展示用的,表中无此字段标识表中无次字段即为此用法
注意: @JsonInclude(JsonInclude.Include.NON_EMPTY) //children不为空则显示,要不然就不展示了。解决了,树下没有子树但是会有个空白的占位的情况
“Mybatis-plustis-plus如何使用注解 @TableField(exist = false)”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!