|
|
@ -4,6 +4,7 @@ import com.epmet.commons.tools.constant.NumConstant; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 3、公众参与概况返参DTO |
|
|
@ -24,7 +25,7 @@ public class PublicPartiProfileResultDTO implements Serializable { |
|
|
|
* */ |
|
|
|
private String monthTrend = ""; |
|
|
|
|
|
|
|
private Integer averageIssue = NumConstant.ZERO; |
|
|
|
private BigDecimal averageIssue = new BigDecimal(NumConstant.ZERO); |
|
|
|
|
|
|
|
/** |
|
|
|
* 较上月百分比 |
|
|
@ -38,8 +39,8 @@ public class PublicPartiProfileResultDTO implements Serializable { |
|
|
|
|
|
|
|
/** |
|
|
|
* 平均参与度 |
|
|
|
* */ |
|
|
|
private Integer averageJoin = NumConstant.ZERO; |
|
|
|
*/ |
|
|
|
private BigDecimal averageJoin = new BigDecimal(NumConstant.ZERO); |
|
|
|
|
|
|
|
private String joinCompareLatestMonth = ""; |
|
|
|
|
|
|
|