5 changed files with 100 additions and 1 deletions
@ -0,0 +1,34 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 1、党员基本情况-饼状图概况 |
||||
|
* @NEI https://nei.netease.com/interface/detail/req/?pid=57068&id=321324
|
||||
|
* @ClassName PartymemberPercentResultDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2020-08-18 14:54 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartymemberPercentResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -2864099044581782674L; |
||||
|
|
||||
|
/** |
||||
|
* 注册党员总数 |
||||
|
* */ |
||||
|
private Integer partyMemberTotal = NumConstant.ZERO; |
||||
|
|
||||
|
/** |
||||
|
* 注册党员占比 |
||||
|
* */ |
||||
|
private String percentInPlatForm; |
||||
|
|
||||
|
/** |
||||
|
* 注册用户总数 |
||||
|
* */ |
||||
|
private Integer platFormTotal = NumConstant.ZERO; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue