From 8c2c8021083fa8edfadf5de0073f61c8d926ed99 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期二, 11 五月 2021 09:37:49 +0800
Subject: [PATCH] 实名认证根据身份证号码识别性别、出生日期
---
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysMenuDO.java | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysMenuDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysMenuDO.java
index 2e25f27..44875d9 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysMenuDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysMenuDO.java
@@ -1,5 +1,7 @@
package com.panzhihua.service_user.model.dos;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@@ -21,6 +23,7 @@
/**
* 菜单id
*/
+ @TableId(type = IdType.AUTO)
private Long menuId;
/**
@@ -107,4 +110,8 @@
* 备注
*/
private String remark;
+ /**
+ * 社区id
+ */
+ private Long communityId;
}
--
Gitblit v1.7.1