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;
|
}
|
}
|