liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActRegistDO.java
@@ -24,7 +24,7 @@
    /**
    * 自增id
    */
    @TableId(type = IdType.INPUT)
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
@@ -44,18 +44,47 @@
    private Date createAt;
    /**
    * 是否是志愿者 0 否 1 是
    */
    private Integer isVolunteer;
     * 开始时间
     */
    private Date startTime;
@Override
public String toString() {
        return "ComActActRegistDO{" +
                "id=" + id +
                ", activityId=" + activityId +
                ", userId=" + userId +
                ", createAt=" + createAt +
                ", isVolunteer=" + isVolunteer +
        "}";
        }
    /**
     * 结束时间
     */
    private Date endTime;
    /**
     * 奖励积分
     */
    private Integer award;
    /**
     * 签到位置
     */
    private String position;
    /**
     * 签到次数
     */
    private Integer times;
    /**
     * 二维码id
     */
    private Long codeId;
    /**
     *  活动类型 1 社区活动 4项目活动 5服务活动
     */
    private Integer type;
    /**
     * 以什么身份报名(1.居民 2.党员 3.志愿者
     */
    private Integer signIdentity;
    /**
     * 单位id(党员以单位名义报名社区活动)
     */
    private Long checkUnitId;
}