From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 24 十月 2022 13:48:24 +0800 Subject: [PATCH] #feat 修改别名 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java | 36 +++++++++++++++--------------------- 1 files changed, 15 insertions(+), 21 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java index 0f873dc..45e21dd 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java @@ -1,11 +1,11 @@ package com.panzhihua.service_community.model.dos; -import com.baomidou.mybatisplus.annotation.*; -import lombok.Data; - import java.io.Serializable; import java.util.Date; +import com.baomidou.mybatisplus.annotation.*; + +import lombok.Data; /** * @auther lyq @@ -22,7 +22,7 @@ /** * 主键id */ - @TableId(type = IdType.AUTO) + @TableId(type = IdType.ASSIGN_ID) private Long id; /** @@ -53,7 +53,7 @@ private Date updateAt; /** - * 报名类型(1.小程序用户 2.小程序家庭成员) + * 报名类型(1.小程序用户 2.小程序家庭成员) */ private Integer familyUserType; @@ -87,23 +87,17 @@ */ private Long communityId; - /** - * 报名类型(1.小程序用户 2.小程序家庭成员) - */ - public interface familyUserType{ - int mini = 1; - int family = 2; - } - @Override public String toString() { - return "ComMngVaccinesEnrollRecordDO{" + - "id=" + id + - ", type=" + type + - ", userId=" + userId + - ", familyUserId=" + familyUserId + - ", createAt=" + createAt + - ", updateAt=" + updateAt + - "}"; + return "ComMngVaccinesEnrollRecordDO{" + "id=" + id + ", type=" + type + ", userId=" + userId + + ", familyUserId=" + familyUserId + ", createAt=" + createAt + ", updateAt=" + updateAt + "}"; + } + + /** + * 报名类型(1.小程序用户 2.小程序家庭成员) + */ + public interface familyUserType { + int mini = 1; + int family = 2; } } \ No newline at end of file -- Gitblit v1.7.1