| | |
| | | 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 |
| | |
| | | /** |
| | | * 限制类型(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; |
| | | |
| | | /** |
| | |
| | | */ |
| | | 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; |
| | |
| | | /** |
| | | * 是否限制(1.是 2.否) |
| | | */ |
| | | public interface isRestrict{ |
| | | public interface isRestrict { |
| | | int yes = 1; |
| | | int no = 2; |
| | | } |
| | |
| | | /** |
| | | * 限制类型(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 + |
| | | "}"; |
| | | } |
| | | } |