huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActIntegralRuleDO.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
@@ -53,13 +53,13 @@
    /**
     * 限制类型(1.月 2.日)
     */
    @TableField(value = "type", updateStrategy  = FieldStrategy.IGNORED)
    @TableField(value = "type", updateStrategy = FieldStrategy.IGNORED)
    private Integer type;
    /**
     * 限制次数
     */
    @TableField(value = "count", updateStrategy  = FieldStrategy.IGNORED)
    @TableField(value = "count", updateStrategy = FieldStrategy.IGNORED)
    private Integer count;
    /**
@@ -82,10 +82,18 @@
     */
    private String remark;
    @Override
    public String toString() {
        return "ComActIntegralRuleDO{" + "id=" + id + ", name=" + name + ", communityId=" + communityId + ", amount="
            + amount + ", integralDescribe=" + integralDescribe + ", isRestrict=" + isRestrict + ", type=" + type
            + ", count=" + count + ", createAt=" + createAt + ", updateAt=" + updateAt + ", integralType="
            + integralType + ", remark=" + remark + "}";
    }
    /**
     * 积分任务类型(1.发布随手拍 2.发布微心愿 3.参与议事投票 4.参与志愿者活动 5.参与社区活动 6.参与党员活动 7.参与调查问卷)
     */
    public interface integralType{
    public interface integralType {
        int fbssp = 1;
        int fbwxy = 2;
        int cyystp = 3;
@@ -98,7 +106,7 @@
    /**
     * 是否限制(1.是 2.否)
     */
    public interface isRestrict{
    public interface isRestrict {
        int yes = 1;
        int no = 2;
    }
@@ -106,26 +114,8 @@
    /**
     * 限制类型(1.月 2.日)
     */
    public interface type{
    public interface type {
        int month = 1;
        int day = 2;
    }
    @Override
    public String toString() {
        return "ComActIntegralRuleDO{" +
                "id=" + id +
                ", name=" + name +
                ", communityId=" + communityId +
                ", amount=" + amount +
                ", integralDescribe=" + integralDescribe +
                ", isRestrict=" + isRestrict +
                ", type=" + type +
                ", count=" + count +
                ", createAt=" + createAt +
                ", updateAt=" + updateAt +
                ", integralType=" + integralType +
                ", remark=" + remark +
                "}";
    }
}