|
@@ -0,0 +1,37 @@
|
|
|
|
|
+package com.etotem.cfc.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("product_dimension_config")
|
|
|
|
|
+public class ProductDimensionConfig implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ private String dimensionCode;
|
|
|
|
|
+
|
|
|
|
|
+ private String dimensionName;
|
|
|
|
|
+
|
|
|
|
|
+ private String dimensionType;
|
|
|
|
|
+
|
|
|
|
|
+ private Long parentId;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer sort;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer enabled;
|
|
|
|
|
+
|
|
|
|
|
+ private String difyDatasetId;
|
|
|
|
|
+
|
|
|
|
|
+ private String remark;
|
|
|
|
|
+
|
|
|
|
|
+ private Date createdAt;
|
|
|
|
|
+
|
|
|
|
|
+ private Date updatedAt;
|
|
|
|
|
+}
|