From 2e64c232ab6b51b2cecf1ee96e1e9b709234f326 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期六, 21 八月 2021 16:35:14 +0800 Subject: [PATCH] 随手拍改版接口开发 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDO.java | 68 ++++++++++++++++++++++++++++++++-- 1 files changed, 64 insertions(+), 4 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 faab029..9dedf28 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 @@ -1,8 +1,6 @@ package com.panzhihua.service_community.model.dos; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.io.Serializable; @@ -22,7 +20,7 @@ /** * community_id */ - @TableId(type = IdType.AUTO) + @TableId(type=IdType.AUTO) private Long communityId; /** @@ -48,5 +46,67 @@ /** * 创建时间 */ + @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 Integer totalUser; + /**社区书记-用户ID*/ + private Long managerId; + /**社区书记_名称*/ + private String managerName; + /**社区介绍*/ + private String introduce; + /**层次递归字段(省>市>区县>街道>社区)*/ + private String path; + /** + * 超管账号 + */ + private String account; + + /** + * 账号密码 + */ + private String password; + + /** + * 状态 0 启用 1 禁用 + */ + private Integer state; + + /** + * 街道ID + */ + private Long streetId; + } -- Gitblit v1.7.1