package com.java110.fee.api;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 公告时间范围POJO
|
* 对应 announcement_time_range 表
|
*/
|
public class AnnouncementTimeRangePo implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private Long id; // 主键ID
|
private String mpId; // 外键编号
|
private String plannedAnnouncementStart; // 拟公布-起始(年月)
|
private String plannedAnnouncementEnd; // 拟公布-止(年月)
|
private String publishedAnnouncementStart; // 已公布-起始(年月)
|
private String publishedAnnouncementEnd; // 已公布-止(年月)
|
private Date createTime; // 创建时间
|
private Date updateTime; // 更新时间
|
|
// 分页参数(非表字段)
|
private Integer page; // 分页偏移量
|
private Integer row; // 每页条数
|
|
// 时间范围查询参数(非表字段)
|
private String startCreateTime; // 开始创建时间
|
private String endCreateTime; // 结束创建时间
|
private String startUpdateTime; // 开始更新时间
|
private String endUpdateTime; // 结束更新时间
|
|
// 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 String getPlannedAnnouncementStart() {
|
return plannedAnnouncementStart;
|
}
|
|
public void setPlannedAnnouncementStart(String plannedAnnouncementStart) {
|
this.plannedAnnouncementStart = plannedAnnouncementStart;
|
}
|
|
public String getPlannedAnnouncementEnd() {
|
return plannedAnnouncementEnd;
|
}
|
|
public void setPlannedAnnouncementEnd(String plannedAnnouncementEnd) {
|
this.plannedAnnouncementEnd = plannedAnnouncementEnd;
|
}
|
|
public String getPublishedAnnouncementStart() {
|
return publishedAnnouncementStart;
|
}
|
|
public void setPublishedAnnouncementStart(String publishedAnnouncementStart) {
|
this.publishedAnnouncementStart = publishedAnnouncementStart;
|
}
|
|
public String getPublishedAnnouncementEnd() {
|
return publishedAnnouncementEnd;
|
}
|
|
public void setPublishedAnnouncementEnd(String publishedAnnouncementEnd) {
|
this.publishedAnnouncementEnd = publishedAnnouncementEnd;
|
}
|
|
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;
|
}
|
|
public String getStartUpdateTime() {
|
return startUpdateTime;
|
}
|
|
public void setStartUpdateTime(String startUpdateTime) {
|
this.startUpdateTime = startUpdateTime;
|
}
|
|
public String getEndUpdateTime() {
|
return endUpdateTime;
|
}
|
|
public void setEndUpdateTime(String endUpdateTime) {
|
this.endUpdateTime = endUpdateTime;
|
}
|
}
|