From de91c84954157bb9f8b6d938cbe0b1b51fb6e65d Mon Sep 17 00:00:00 2001
From: CeDo <cedoogle@gmail.com>
Date: 星期五, 07 五月 2021 15:23:57 +0800
Subject: [PATCH] bugfixed:新增便民服务商家 报错

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java |   53 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 52 insertions(+), 1 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java
index ce44815..bb2de39 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java
@@ -20,7 +20,7 @@
     /**
      * community_id
      */
-    @TableId(type = IdType.AUTO)
+    @TableId(type=IdType.AUTO)
     private Long communityId;
 
     /**
@@ -48,4 +48,55 @@
      */
     @TableField(fill = FieldFill.INSERT)
     private Date createAt;
+
+    /**
+     * 省份地址编码
+     */
+    private String provinceCode;
+
+    /**
+     * 市级地址编码
+     */
+    private String cityCode;
+
+    /**
+     * 区级地址编码
+     */
+    private String areaCode;
+
+    /**
+     * 社区面积
+     */
+    private Double square;
+
+    /**
+     * 联系人
+     */
+    private String contacts;
+
+    /**
+     * 联系人电话
+     */
+    private String contactsPhone;
+
+    /**
+     * 超管账号
+     */
+    private String account;
+
+    /**
+     * 账号密码
+     */
+    private String password;
+
+    /**
+     * 状态 0 启用 1 禁用
+     */
+    private Integer state;
+
+    /**
+     * 街道ID
+     */
+    private Long streetId;
+
 }

--
Gitblit v1.7.1