| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacPblmRectPrctParam
- *
- * @author lhc
- * @date 2019-12-21
- */
- public class TacPblmRectPrctParam extends PageParam implements Serializable {
- // 年度
- @ApiParam(name = "年度")
- @ApiModelProperty(value = "年度", name = "year")
- private Long year;
- // 批次
- @ApiParam(name = "批次")
- @ApiModelProperty(value = "批次", name = "batch")
- private Long batch;
- // 单位ID
- @ApiParam(name = "单位ID")
- @ApiModelProperty(value = "单位ID", name = "orgId")
- private String orgId;
- // 单位名称
- @ApiParam(name = "单位名称")
- @ApiModelProperty(value = "单位名称", name = "orgNm")
- private String orgNm;
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 稽察通知一省一单ID
- @ApiParam(name = "稽察通知一省一单ID")
- @ApiModelProperty(value = "稽察通知一省一单ID", name = "rectOrgId")
- private String rectOrgId;
- // 登记表ID
- @ApiParam(name = "登记表ID")
- @ApiModelProperty(value = "登记表ID", name = "rgstrId")
- private String rgstrId;
- // 项目名称
- @ApiParam(name = "项目名称")
- @ApiModelProperty(value = "项目名称", name = "name")
- private String name;
- // 反馈情况
- @ApiParam(name = "反馈情况")
- @ApiModelProperty(value = "反馈情况", name = "feedBack")
- private String feedBack;
- // 省厅反馈人员ID
- @ApiParam(name = "省厅反馈人员ID")
- @ApiModelProperty(value = "省厅反馈人员ID", name = "rectPersId")
- private String rectPersId;
- // 省厅反馈人员姓名
- @ApiParam(name = "省厅反馈人员姓名")
- @ApiModelProperty(value = "省厅反馈人员姓名", name = "rectPersName")
- private String rectPersName;
- // 创建人员id
- @ApiParam(name = "创建人员id")
- @ApiModelProperty(value = "创建人员id", name = "persId")
- private String persId;
- // 创建人员姓名
- @ApiParam(name = "创建人员姓名")
- @ApiModelProperty(value = "创建人员姓名", name = "persName")
- private String persName;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- // 建安中心通知ID
- @ApiParam(name = "建安中心通知ID")
- @ApiModelProperty(value = "建安中心通知ID", name = "rectId")
- private String rectId;
- public TacPblmRectPrctParam() {
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public Long getBatch() {
- return batch;
- }
- public void setBatch(Long batch) {
- this.batch = batch;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getOrgNm() {
- return orgNm;
- }
- public void setOrgNm(String orgNm) {
- this.orgNm = orgNm;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRectOrgId() {
- return rectOrgId;
- }
- public void setRectOrgId(String rectOrgId) {
- this.rectOrgId = rectOrgId;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getFeedBack() {
- return feedBack;
- }
- public void setFeedBack(String feedBack) {
- this.feedBack = feedBack;
- }
- public String getRectPersId() {
- return rectPersId;
- }
- public void setRectPersId(String rectPersId) {
- this.rectPersId = rectPersId;
- }
- public String getRectPersName() {
- return rectPersName;
- }
- public void setRectPersName(String rectPersName) {
- this.rectPersName = rectPersName;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getRectId() {
- return rectId;
- }
- public void setRectId(String rectId) {
- this.rectId = rectId;
- }
- }
|