From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActReserveDO.java | 38 ++++++++++++++++++++++++++++++++++----
1 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActReserveDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActReserveDO.java
index 44400de..1a6c1d8 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActReserveDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActReserveDO.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;
@@ -24,7 +22,7 @@
/**
* 主键id
*/
- @TableId(type = IdType.AUTO)
+ @TableId(type = IdType.ASSIGN_ID)
private Long id;
/**
@@ -122,6 +120,34 @@
*/
private Long updateBy;
+ /**
+ * 结束时间
+ */
+ @TableField(value = "end_time", updateStrategy = FieldStrategy.IGNORED)
+ private Date endTime;
+
+ /**
+ * 是否已删除(1.是 2.否)
+ */
+ private Integer isDel;
+
+ /**
+ * 默认是否枚举(1.是 2.否)
+ */
+ public interface isOk{
+ int yes = 1;
+ int no = 2;
+ }
+
+ /**
+ * 预约登记状态枚举(1.待发布 2.进行中 3.已停止)
+ */
+ public interface status{
+ int dfb = 1;
+ int jxz = 2;
+ int ytz = 3;
+ }
+
@Override
public String toString() {
return "ComActReserveDO{" +
@@ -147,4 +173,8 @@
", updateBy=" + updateBy +
"}";
}
+ public interface isRepeat{
+ int yes=1;
+ int no=2;
+ }
}
\ No newline at end of file
--
Gitblit v1.7.1