yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.zzg.system.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class StateAssetDetailVO {
 
    private String houseId;
 
    private String street;
 
    private String location;
 
    private String ownerName;
 
    private Integer personNum;
 
    //不动产权
    private String realEstateCertificateNumber;
 
    private Integer compensationType;
 
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "##0.0000")
    private BigDecimal virtualMoney;
 
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "##0.0000")
    private BigDecimal agreementMoney;
 
    private Integer projectStatus;
 
    //国土使用证号
    private String usingAreaCertificateNumber;
 
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "##0.0000")
    private BigDecimal settleMoney;
 
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "##0.0000")
    private BigDecimal diffMoney;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date paidOffTime;
}