|
@@ -1,15 +1,11 @@
|
|
|
package com.fdkk.sxz.entity.custuom;
|
|
|
|
|
|
-import lombok.Data;
|
|
|
-import com.fdkk.sxz.entity.BaseEntity;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.fdkk.sxz.entity.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -20,7 +16,7 @@ import java.io.Serializable;
|
|
|
@Data
|
|
|
@TableName("tb_custom")
|
|
|
@ApiModel(value = "定制家具——库", description = "CustomEntity")
|
|
|
-public class CustomEntity extends BaseEntity {
|
|
|
+public class CustomEntity extends BaseEntity {
|
|
|
|
|
|
private static final long serialVersionUID = 1630305885598L;
|
|
|
|
|
@@ -45,5 +41,12 @@ public class CustomEntity extends BaseEntity {
|
|
|
@ApiModelProperty(value = "菜单类型如:product、component、material", name = "type")
|
|
|
private String type;
|
|
|
|
|
|
+ /**
|
|
|
+ * 菜单类型:product、component、material
|
|
|
+ */
|
|
|
+ @TableField("is_show")
|
|
|
+ @ApiModelProperty(value = "1:显示 0:不显示")
|
|
|
+ private String isShow;
|
|
|
+
|
|
|
|
|
|
}
|