From 134eca4362913537b63d35b51b2a9c2a1870e1a5 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期五, 03 十二月 2021 15:57:35 +0800
Subject: [PATCH] 房屋租赁修改

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java |  176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 176 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java
new file mode 100644
index 0000000..e6e80bd
--- /dev/null
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java
@@ -0,0 +1,176 @@
+package com.panzhihua.service_community.model.dos;
+
+import java.io.Serializable;
+import java.util.Date;
+
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import lombok.Data;
+
+/**
+ * @program: springcloud_k8s_panzhihuazhihuishequ
+ * @description: 社区活动
+ * @author: huang.hongfa weixin hhf9596 qq 959656820
+ * @create: 2020-12-07 13:56
+ **/
+@Data
+@TableName(value = "com_act_activity")
+public class ComActActivityDO implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 自增id
+     */
+    @TableId(type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 活动名称
+     */
+    private String activityName;
+
+    /**
+     * 负责人userID
+     */
+    private Long sponsorId;
+
+    /**
+     * 活动地址
+     */
+    private String activityAddr;
+
+    /**
+     * 纬度
+     */
+    private String lat;
+
+    /**
+     * 经度
+     */
+    private String lng;
+
+    /**
+     * 活动状态
+     */
+    private Integer status;
+
+    /**
+     * 发布时间
+     */
+    private Date publishAt;
+
+    /**
+     * 活动结束时间
+     */
+    private Date endAt;
+
+    /**
+     * 活动开始时间
+     */
+    private Date beginAt;
+
+    /**
+     * 报名开始时间
+     */
+    private Date signUpBegin;
+
+    /**
+     * 报名结束时间
+     */
+    private Date signUpEnd;
+
+    /**
+     * 参加人群
+     */
+    private String aattendPeople;
+
+
+    /**
+     * 志愿者人数下线
+     */
+    private Integer volunteerMin;
+
+    /**
+     * 志愿者人数上限
+     */
+    private Integer volunteerMax;
+
+    /**
+     * 参与者人数下线
+     */
+    private Integer participantMin;
+
+    /**
+     * 参与者人数上限
+     */
+    private Integer participantMax;
+
+    /**
+     * 活动封面
+     */
+    private String cover;
+
+    /**
+     * 是否有奖品 1 有 0 无
+     */
+    private Integer hasPrize;
+
+    /**
+     * 是否二维码签到 1 是 0否
+     */
+    private Integer isQrCode;
+
+    /**
+     * 联系人姓名
+     */
+    private String contactName;
+
+    /**
+     * 联系人电话
+     */
+    private String contactPhone;
+
+    /**
+     * 是否签到 1 是 0否
+     */
+    private Integer isRegist;
+
+    /**
+     * 是否顶部 1 是 0否
+     */
+    private Integer isTop;
+
+    /**
+     * 奖品备注
+     */
+    private String prizeRemark;
+    /**
+     * 奖励说明
+     */
+    private String rewardDesc;
+    /**
+     * 活动内容
+     */
+    private String content;
+    /**
+     * 创建时间
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private Date createAt;
+    /**
+     * 取消原因
+     */
+    private String cancelReason;
+    /**
+     * 社区id
+     */
+    private Long communityId;
+    /**
+     * 活动是否已默认好评
+     */
+    private Integer isDefaultPraise;
+}

--
Gitblit v1.7.1