Mybatis-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; /** * 商品三級分類 * * @author yuhl * @email [email protected] * @date 2020-09-04 14:12:07 */ @Data @TableName("pms_category") public class CategoryEntity implements Serializable { private static final long serialVersionUID = 1L; /** * 分類id */ @TableId private Long catId; /** * 分類名稱 */ private String name; /** * 父分類id */ private Long parentCid; /** * 層級 */ private Integer catLevel; /** * 是否顯示[0-不顯示,1顯示] */ @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-plus使用註解 @TableField(exist = false)的文章就介紹到這瞭,更多相關Mybatis-plus @TableField(exist = false) 內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- mybatis plus更新字段為null處理方法
- springboot+mybatis-plus+oracle實現邏輯刪除
- 在MyBatisPlus中使用@TableField完成字段自動填充的操作
- Mybatis-Plus自動填充更新操作相關字段的實現
- mybatis-plus IdWorker生成的Id和返回給前臺的不一致的解決