yanghb
2025-02-18 1fc203f758ace853f4bfa900c422c2f741d09e79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}