chengf
2026-03-11 b88a288f4f787b509463678e3cd9ccfa3f37014b
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
package com.java110.fee.api;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 业委会公约POJO
 * 对应 owners_committee_convention 表
 * @author dev
 * @date 2025-12-24
 */
public class OwnersCommitteeConventionPo implements Serializable {
    private static final long serialVersionUID = 1L;
 
    // 表字段
    private Long id; // 自增主键ID
    private String mpId; // 业务唯一标识(业委会公约mp_id)
    private Double quota; // 额度(DECIMAL(18,2))
    private String ownersCommitteeResolution; // 业委会大会决议(是/否)
    private String ownersCommitteeConsultation; // 业委会征询表(是否)
    private Date createTime; // 创建时间
    private Date updateTime; // 更新时间
 
    // 分页参数(非表字段)
    private Integer page; // 分页偏移量
    private Integer row; // 每页条数
 
    // 时间范围查询参数(非表字段)
    private String startCreateTime; // 开始创建时间
    private String endCreateTime; // 结束创建时间
 
    // 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 Double getQuota() {
        return quota;
    }
 
    public void setQuota(Double quota) {
        this.quota = quota;
    }
 
    public String getOwnersCommitteeResolution() {
        return ownersCommitteeResolution;
    }
 
    public void setOwnersCommitteeResolution(String ownersCommitteeResolution) {
        this.ownersCommitteeResolution = ownersCommitteeResolution;
    }
 
    public String getOwnersCommitteeConsultation() {
        return ownersCommitteeConsultation;
    }
 
    public void setOwnersCommitteeConsultation(String ownersCommitteeConsultation) {
        this.ownersCommitteeConsultation = ownersCommitteeConsultation;
    }
 
    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;
    }
}