package com.zzg.system.domain.vo;
|
|
import com.zzg.common.core.domain.entity.state.StateProject;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @date 2024/08/28
|
*/
|
@Data
|
public class ProjectImplPageVO extends StateProject {
|
// private Integer monetaryCompensationCount;
|
// private Integer equityReplacementCount;
|
private Integer placedCount;
|
private Integer unplacedCount;
|
//安置比例
|
private BigDecimal placedRatio = BigDecimal.ZERO;
|
private ProjectExecutionSumVO stateAgreementExecutionSumVO;
|
private ProjectExecutionSumVO virtualStateAgreementExecutionSumVO;
|
|
//涉及项目
|
private Integer projectCount;
|
|
//涉及房产
|
private Integer houseCount;
|
}
|