| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspRsmlRgstrPresParam
- *
- * @author lune
- * @date 2020-3-9
- */
- public class BisInspRsmlRgstrPresParam extends PageParam implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("水库督查登记ID")
- private String rgstrId;
- @ApiModelProperty("是否明确三个责任人(1:是;2:否)")
- private String isClearPers;
- @ApiModelProperty("行政责任人姓名")
- private String wiunWaoLegPers;
- @ApiModelProperty("行政责任人电话")
- private String wiunWaoLegPersTel;
- @ApiModelProperty("行政责任人职务")
- private String wiunWaoLegPersDuty;
- @ApiModelProperty("技术责任人姓名")
- private String techPers;
- @ApiModelProperty("技术责任人电话")
- private String techPersTel;
- @ApiModelProperty("技术责任人职务")
- private String techPersDuty;
- @ApiModelProperty("巡查责任人姓名")
- private String patrolPers;
- @ApiModelProperty("巡查责任人电话")
- private String patrolPersTel;
- @ApiModelProperty("巡查责任人职务")
- private String patrolPersDuty;
- @ApiModelProperty("是否设立标识牌(1:是;2:否)")
- private String isSetCard;
- @ApiModelProperty("三个责任人履职情况(1:好;2:基本到位;3:差)")
- private String persResu;
- @ApiModelProperty("记录人员ID")
- private String recPersId;
- @ApiModelProperty("记录人员")
- private String recPers2;
- @ApiModelProperty("记录人员电话")
- private String recPersTel;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
- private String status;
- public BisInspRsmlRgstrPresParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getIsClearPers() {
- return isClearPers;
- }
- public void setIsClearPers(String isClearPers) {
- this.isClearPers = isClearPers;
- }
- public String getWiunWaoLegPers() {
- return wiunWaoLegPers;
- }
- public void setWiunWaoLegPers(String wiunWaoLegPers) {
- this.wiunWaoLegPers = wiunWaoLegPers;
- }
- public String getWiunWaoLegPersTel() {
- return wiunWaoLegPersTel;
- }
- public void setWiunWaoLegPersTel(String wiunWaoLegPersTel) {
- this.wiunWaoLegPersTel = wiunWaoLegPersTel;
- }
- public String getWiunWaoLegPersDuty() {
- return wiunWaoLegPersDuty;
- }
- public void setWiunWaoLegPersDuty(String wiunWaoLegPersDuty) {
- this.wiunWaoLegPersDuty = wiunWaoLegPersDuty;
- }
- public String getTechPers() {
- return techPers;
- }
- public void setTechPers(String techPers) {
- this.techPers = techPers;
- }
- public String getTechPersTel() {
- return techPersTel;
- }
- public void setTechPersTel(String techPersTel) {
- this.techPersTel = techPersTel;
- }
- public String getTechPersDuty() {
- return techPersDuty;
- }
- public void setTechPersDuty(String techPersDuty) {
- this.techPersDuty = techPersDuty;
- }
- public String getPatrolPers() {
- return patrolPers;
- }
- public void setPatrolPers(String patrolPers) {
- this.patrolPers = patrolPers;
- }
- public String getPatrolPersTel() {
- return patrolPersTel;
- }
- public void setPatrolPersTel(String patrolPersTel) {
- this.patrolPersTel = patrolPersTel;
- }
- public String getPatrolPersDuty() {
- return patrolPersDuty;
- }
- public void setPatrolPersDuty(String patrolPersDuty) {
- this.patrolPersDuty = patrolPersDuty;
- }
- public String getIsSetCard() {
- return isSetCard;
- }
- public void setIsSetCard(String isSetCard) {
- this.isSetCard = isSetCard;
- }
- public String getPersResu() {
- return persResu;
- }
- public void setPersResu(String persResu) {
- this.persResu = persResu;
- }
- public String getRecPersId() {
- return recPersId;
- }
- public void setRecPersId(String recPersId) {
- this.recPersId = recPersId;
- }
- public String getRecPers2() {
- return recPers2;
- }
- public void setRecPers2(String recPers2) {
- this.recPers2 = recPers2;
- }
- public String getRecPersTel() {
- return recPersTel;
- }
- public void setRecPersTel(String recPersTel) {
- this.recPersTel = recPersTel;
- }
- 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 getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- }
|