7 changed files with 141 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/11/16 09:15 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RHZKStatisticsResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6493812449146476415L; |
||||
|
|
||||
|
private Integer userTotal = NumConstant.ZERO; |
||||
|
|
||||
|
/** |
||||
|
* 人户一致,人在户不在,户在人不在, |
||||
|
* 为空的 暂不清楚 |
||||
|
*/ |
||||
|
private Integer rhyzUserTotal = NumConstant.ZERO; |
||||
|
private BigDecimal rhyzUserRatio = NumConstant.ZERO_DECIMAL; |
||||
|
private Integer rzhbzUserTotal = NumConstant.ZERO; |
||||
|
private BigDecimal rzhbzUserRatio = NumConstant.ZERO_DECIMAL; |
||||
|
private Integer hzrzUserTotal = NumConstant.ZERO; |
||||
|
private BigDecimal hzrzUserRatio = NumConstant.ZERO_DECIMAL; |
||||
|
private Integer zbqcUserTotal = NumConstant.ZERO; |
||||
|
private BigDecimal zbqcUserRatio = NumConstant.ZERO_DECIMAL; |
||||
|
|
||||
|
@JsonIgnore |
||||
|
private Integer total; |
||||
|
@JsonIgnore |
||||
|
private String rhzk; |
||||
|
} |
Loading…
Reference in new issue