chengf
2026-01-16 d5b6bebe835f1597f227409feced749dbe811fc1
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package com.java110.fee.api;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 业主质保金支取信息POJO
 * 对应 owner_quality_guarantee 表
 * @author dev
 * @date 2025-12-24
 */
public class OwnerQualityGuaranteePo implements Serializable {
    private static final long serialVersionUID = 1L;
 
    // 表字段
    private Long id; // 自增主键ID
    private String mpId; // 业务标识(mp_id)
    private Date availableWithdrawalDate; // 可启动支取日期(年月日)
    private String qualityGuaranteePeriod2; // 质保期
    private String qualityGuaranteePeriod2Start; // 质保期
    private String qualityGuaranteePeriod2End; // 质保期
    private Double qualityGuaranteeRatio; // 质保金占比
    private Double qualityGuaranteeAmount; // 质保金金额(元)
    private Date createTime; // 创建时间
    private Date updateTime; // 更新时间
 
    // 分页参数(非表字段)
    private Integer page; // 分页偏移量
    private Integer row; // 每页条数
 
    // 时间范围查询参数(非表字段)
    private String startCreateTime; // 开始创建时间
    private String endCreateTime; // 结束创建时间
 
    private String acceptanceDate;
    private String auditStatus;
 
    public String getAcceptanceDate() {
        return acceptanceDate;
    }
 
    public void setAcceptanceDate(String acceptanceDate) {
        this.acceptanceDate = acceptanceDate;
    }
 
    public String getAuditStatus() {
        return auditStatus;
    }
 
    public void setAuditStatus(String auditStatus) {
        this.auditStatus = auditStatus;
    }
 
    // Getter & Setter
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getMpId() {
        return mpId;
    }
 
 
    public void setMpId(String mpId) {
        this.mpId = mpId;
    }
 
    public Date getAvailableWithdrawalDate() {
        return availableWithdrawalDate;
    }
 
    public void setAvailableWithdrawalDate(Date availableWithdrawalDate) {
        this.availableWithdrawalDate = availableWithdrawalDate;
    }
 
    public String getQualityGuaranteePeriod2Start() {
        return qualityGuaranteePeriod2Start;
    }
 
    public void setQualityGuaranteePeriod2Start(String qualityGuaranteePeriod2Start) {
        String test = "";
        if (this.qualityGuaranteePeriod2 == null || this.qualityGuaranteePeriod2.equals("")) {
            test = qualityGuaranteePeriod2Start + "- ~";
        }else if(this.qualityGuaranteePeriod2.contains(" ~ ")){
            test = qualityGuaranteePeriod2Start + " ~ " + qualityGuaranteePeriod2.split(" ~ ")[1];
        }
        this.qualityGuaranteePeriod2 = test;
        this.qualityGuaranteePeriod2Start = qualityGuaranteePeriod2Start;
    }
 
    public String getQualityGuaranteePeriod2End() {
        return qualityGuaranteePeriod2End;
    }
 
    public void setQualityGuaranteePeriod2End(String qualityGuaranteePeriod2End) {
        String test = "";
        if (this.qualityGuaranteePeriod2 == null || this.qualityGuaranteePeriod2.equals("")) {
            test =  "~ -" + qualityGuaranteePeriod2End;
        }else if(this.qualityGuaranteePeriod2.contains(" ~ ")){
            test = qualityGuaranteePeriod2.split(" ~ ")[0] + " ~ " + qualityGuaranteePeriod2End;
        }
        this.qualityGuaranteePeriod2 = test;
        this.qualityGuaranteePeriod2End = qualityGuaranteePeriod2End;
    }
 
    public String getQualityGuaranteePeriod2() {
        return qualityGuaranteePeriod2;
    }
 
    public void setQualityGuaranteePeriod2(String qualityGuaranteePeriod2) {
        if (qualityGuaranteePeriod2 != null &&  qualityGuaranteePeriod2.contains(" ~ ")) {
            String[] test = qualityGuaranteePeriod2.split(" ~ ");
            if (test.length == 2) {
                this.qualityGuaranteePeriod2Start = test[0];
                this.qualityGuaranteePeriod2End = test[1];
            }
        }
        this.qualityGuaranteePeriod2 = qualityGuaranteePeriod2;
    }
 
    public Double getQualityGuaranteeRatio() {
        return qualityGuaranteeRatio;
    }
 
    public void setQualityGuaranteeRatio(Double qualityGuaranteeRatio) {
        this.qualityGuaranteeRatio = qualityGuaranteeRatio;
    }
 
    public Double getQualityGuaranteeAmount() {
        return qualityGuaranteeAmount;
    }
 
    public void setQualityGuaranteeAmount(Double qualityGuaranteeAmount) {
        this.qualityGuaranteeAmount = qualityGuaranteeAmount;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Integer getPage() {
        return page;
    }
 
    public void setPage(Integer page) {
        this.page = page;
    }
 
    public Integer getRow() {
        return row;
    }
 
    public void setRow(Integer row) {
        this.row = row;
    }
 
    public String getStartCreateTime() {
        return startCreateTime;
    }
 
    public void setStartCreateTime(String startCreateTime) {
        this.startCreateTime = startCreateTime;
    }
 
    public String getEndCreateTime() {
        return endCreateTime;
    }
 
    public void setEndCreateTime(String endCreateTime) {
        this.endCreateTime = endCreateTime;
    }
}