|
|
@ -44,7 +44,7 @@ public class IcPartyMemberPointDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 基础积分分值 |
|
|
|
*/ |
|
|
|
private Integer basePoint; |
|
|
|
private Integer basePoint = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 基础积分选项 英文逗号隔开 |
|
|
@ -54,7 +54,7 @@ public class IcPartyMemberPointDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 民主评议积分分值 |
|
|
|
*/ |
|
|
|
private Integer reviewPoint; |
|
|
|
private Integer reviewPoint = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 民主评议积分选项 |
|
|
@ -64,7 +64,7 @@ public class IcPartyMemberPointDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 激励积分分值 |
|
|
|
*/ |
|
|
|
private Integer inspirePoint; |
|
|
|
private Integer inspirePoint = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 激励积分选项 |
|
|
@ -74,7 +74,7 @@ public class IcPartyMemberPointDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 警示扣分分值 |
|
|
|
*/ |
|
|
|
private Integer warnPoint; |
|
|
|
private Integer warnPoint = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 警示扣分选项 |
|
|
@ -84,7 +84,7 @@ public class IcPartyMemberPointDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 总分 |
|
|
|
*/ |
|
|
|
private Integer totalScore; |
|
|
|
private Integer totalScore = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除标识:0.未删除 1.已删除 |
|
|
|