From 94e3a209bb9a31c4ddbd31494bb1628f6fe2e96e Mon Sep 17 00:00:00 2001
From: lidongdong <1459917685@qq.com>
Date: 星期三, 12 十月 2022 17:54:49 +0800
Subject: [PATCH] 新增首页工单 办事指南排行榜接口 导办人员排行榜接口 组织排行榜接口 新增办事指南统计接口 导办人员统计接口 组织胖行榜统计接口
---
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/ComMngFamilyInfoDO.java | 92 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 92 insertions(+), 0 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/ComMngFamilyInfoDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/ComMngFamilyInfoDO.java
new file mode 100644
index 0000000..9b68ba4
--- /dev/null
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/ComMngFamilyInfoDO.java
@@ -0,0 +1,92 @@
+package com.panzhihua.service_user.model.dos;
+
+import java.io.Serializable;
+import java.util.Date;
+
+import com.baomidou.mybatisplus.annotation.*;
+
+import lombok.Data;
+
+/**
+ * @program: springcloud_k8s_panzhihuazhihuishequ
+ * @description: 家庭信息
+ * @author: huang.hongfa weixin hhf9596 qq 959656820
+ * @create: 2020-12-14 16:51
+ **/
+@Data
+@TableName("com_mng_family_info")
+public class ComMngFamilyInfoDO implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 自增id
+ */
+ @TableId(type = IdType.ASSIGN_ID)
+ private Long id;
+
+ /**
+ * 本人id
+ */
+ private Long userId;
+
+ /**
+ * 与本人关系
+ */
+ private String relationship;
+
+ /**
+ * 名字
+ */
+ private String name;
+
+ /**
+ * 身份证号
+ */
+ private String idCard;
+
+ /**
+ * 手机号
+ */
+ private String phone;
+
+ /**
+ * 年龄
+ */
+ private Integer age;
+
+ /**
+ * 健康状况
+ */
+ private String health;
+
+ /**
+ * 工作
+ */
+ private String job;
+
+ /**
+ * 证件照(人像面)照片
+ */
+ private String cardPhotoFront;
+ /**
+ * 证件照(国徽面)照片
+ */
+ private String cardPhotoBack;
+ /**
+ * 户口本照片 逗号隔开
+ */
+ private String familyBook;
+
+ /**
+ * create_at
+ */
+
+ @TableField(fill = FieldFill.INSERT)
+ private Date createAt;
+
+ /**
+ * update_at
+ */
+ @TableField(fill = FieldFill.UPDATE)
+ private Date updateAt;
+}
--
Gitblit v1.7.1