|
|
@ -49,38 +49,41 @@ public class MyPointTaskResultDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 事件CODE 来自事件表 |
|
|
|
*/ |
|
|
|
// @JsonIgnore
|
|
|
|
@JsonIgnore |
|
|
|
private String eventCode; |
|
|
|
|
|
|
|
/** |
|
|
|
* 操作类型 加积分:add;减积分:subtract |
|
|
|
*/ |
|
|
|
// @JsonIgnore
|
|
|
|
@JsonIgnore |
|
|
|
private String operateType; |
|
|
|
|
|
|
|
/** |
|
|
|
* 积分上限 0表示不涉及积分上限; |
|
|
|
*/ |
|
|
|
// @JsonIgnore
|
|
|
|
@JsonIgnore |
|
|
|
private Integer upLimit; |
|
|
|
|
|
|
|
/** |
|
|
|
* 获得积分值 |
|
|
|
*/ |
|
|
|
// @JsonIgnore
|
|
|
|
@JsonIgnore |
|
|
|
private Integer point; |
|
|
|
/** |
|
|
|
* 已完成次数 |
|
|
|
*/ |
|
|
|
@JsonIgnore |
|
|
|
private Integer finishedCount; |
|
|
|
|
|
|
|
/** |
|
|
|
* 上限次数,0代表没有上限次数 |
|
|
|
*/ |
|
|
|
@JsonIgnore |
|
|
|
private Integer upLimitCount; |
|
|
|
/** |
|
|
|
* 排序 |
|
|
|
*/ |
|
|
|
@JsonIgnore |
|
|
|
private Integer sort; |
|
|
|
|
|
|
|
/** |
|
|
|