From 8788a78ad30c1bb9d50d91b10e76d3ae47ed8da2 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期一, 07 六月 2021 09:28:23 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/test_future_wangge' into test_future_wangge

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java |  102 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 102 insertions(+), 0 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
new file mode 100644
index 0000000..bb2de39
--- /dev/null
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java
@@ -0,0 +1,102 @@
+package com.panzhihua.service_community.model.dos;
+
+import com.baomidou.mybatisplus.annotation.*;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @program: springcloud_k8s_panzhihuazhihuishequ
+ * @description: 社区表
+ * @author: huang.hongfa weixin hhf9596 qq 959656820
+ * @create: 2020-12-07 14:12
+ **/
+@Data
+@TableName(value = "com_act")
+public class ComActDO implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * community_id
+     */
+    @TableId(type=IdType.AUTO)
+    private Long communityId;
+
+    /**
+     * 社区名字
+     */
+    private String name;
+
+    /**
+     * 社区地址
+     */
+    private String address;
+
+    /**
+     * 经度
+     */
+    private String lng;
+
+    /**
+     * 维度
+     */
+    private String lat;
+
+    /**
+     * 创建时间
+     */
+    @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