wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package com.java110.dto.propertyRightRegistrationDetail;
 
import com.java110.dto.PageDto;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @ClassName FloorDto
 * @Description 房屋产权证件详情数据层封装
 * @Author wuxw
 * @Date 2019/4/24 8:52
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class PropertyRightRegistrationDetailDto extends PageDto implements Serializable {
 
    public static final String ID_CARD = "001"; // 001身份证   002购房合同   003维修基金   004契税
    public static final String HOUSE_PURCHASE = "002"; // 001身份证   002购房合同   003维修基金   004契税
    public static final String REPAIR_MONEY = "003"; // 001身份证   002购房合同   003维修基金   004契税
    public static final String DEED_TAX = "004"; // 001身份证   002购房合同   003维修基金   004契税
 
    public static final String STATE_NO = "0";
    public static final String STATE_ADOPT = "1";
    public static final String STATE_FAIL = "2";
 
    private String prrId;
    private String prrdId;
    private String createUser;
    private String state;
    private String securities;
    private String securitiesName;
    private String isTrue;
    //身份证图片地址
    private String idCardUrl;
    //购房合同图片地址
    private String housePurchaseUrl;
    //维修基金图片地址
    private String repairUrl;
    //契税图片地址
    private String deedTaxUrl;
 
    private Date createTime;
 
    private String statusCd = "0";
 
    public String getPrrId() {
        return prrId;
    }
 
    public void setPrrId(String prrId) {
        this.prrId = prrId;
    }
 
    public String getPrrdId() {
        return prrdId;
    }
 
    public void setPrrdId(String prrdId) {
        this.prrdId = prrdId;
    }
 
    public String getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(String createUser) {
        this.createUser = createUser;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getSecurities() {
        return securities;
    }
 
    public void setSecurities(String securities) {
        this.securities = securities;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getStatusCd() {
        return statusCd;
    }
 
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
 
    public String getIsTrue() {
        return isTrue;
    }
 
    public void setIsTrue(String isTrue) {
        this.isTrue = isTrue;
    }
 
    public String getSecuritiesName() {
        return securitiesName;
    }
 
    public void setSecuritiesName(String securitiesName) {
        this.securitiesName = securitiesName;
    }
 
    public String getIdCardUrl() {
        return idCardUrl;
    }
 
    public void setIdCardUrl(String idCardUrl) {
        this.idCardUrl = idCardUrl;
    }
 
    public String getHousePurchaseUrl() {
        return housePurchaseUrl;
    }
 
    public void setHousePurchaseUrl(String housePurchaseUrl) {
        this.housePurchaseUrl = housePurchaseUrl;
    }
 
    public String getRepairUrl() {
        return repairUrl;
    }
 
    public void setRepairUrl(String repairUrl) {
        this.repairUrl = repairUrl;
    }
 
    public String getDeedTaxUrl() {
        return deedTaxUrl;
    }
 
    public void setDeedTaxUrl(String deedTaxUrl) {
        this.deedTaxUrl = deedTaxUrl;
    }
}