From 54ad966d0b142c97fc659263b51d1ea5d7b5c7c6 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期五, 28 五月 2021 16:17:08 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVillageDO.java | 22 ++++++++++++++++++---- 1 files changed, 18 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVillageDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVillageDO.java index 0746b09..18e654b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVillageDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVillageDO.java @@ -27,11 +27,11 @@ /** * 门牌号 */ - private Integer houseNum; + private String houseNum; /** * 小区(组) */ - private String group; + private String groupAt; /** * 创建时间 */ @@ -42,12 +42,26 @@ /** * 社区id */ - @TableId(type = IdType.AUTO) private Long communityId; /** * 街道id */ - @TableId(type = IdType.AUTO) private Long streetId; + + /** + * 小区类型(1.城镇 2.农村 3.未知) + */ + private Integer type; + + /** + * 小区地址 + */ + private String address; + + /** + * 更新时间 + */ + @TableField(fill = FieldFill.UPDATE) + private Date updateAt; } -- Gitblit v1.7.1