From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActSignDO.java | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActSignDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActSignDO.java index 5634008..bae66d8 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActSignDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActSignDO.java @@ -44,14 +44,18 @@ @TableField(fill = FieldFill.INSERT) private Date createAt; /** - * 是否是志愿者 0 不是 1 是 + * 以什么身份报名(1.居民 2.党员 3.志愿者) */ - private Integer isVolunteer; + private Integer signIdentity; /** * 报名状态 0 已取消 1已报名 */ private Integer status; + /** + * 单位id(党员以单位名义报名社区活动) + */ + private Long checkUnitId; /** * 取消原因 @@ -60,4 +64,9 @@ private String reason; private Integer times; + + /** + * 是否邀请 + */ + private Boolean isInvite; } -- Gitblit v1.7.1