guoyujia пре 2 месеци
родитељ
комит
28c9e158e0

+ 1 - 0
src/main/java/cn/ezhizao/framework/web/domain/BaseEntity.java

@@ -28,6 +28,7 @@ public class BaseEntity implements Serializable {
     /**
      * 主键
      */
+    @TableField("id")
     private Long id;
 
     /**

+ 3 - 3
src/main/java/cn/ezhizao/project/business/domain/BizProduct.java

@@ -189,9 +189,9 @@ public class BizProduct extends BaseEntity
     /**
      * 备注
      */
-//    @Excel(name = "备注")
-//    @TableField(exist = true)
-//    private String remark;
+    @Excel(name = "备注")
+    @TableField(exist = true)
+    private String remark;
 
     public BizProduct() {
     }