| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspEfpRgstrReasonsRecParam
- *
- * @author lune
- * @date 2020-5-27
- */
- public class BisInspEfpRgstrReasonsRecParam extends PageParam implements Serializable {
- @ApiModelProperty("主键ID*")
- private String id;
- @ApiModelProperty("水库督查登记ID*")
- private String rgstrId;
- @ApiModelProperty("原因分析")
- private String reasons;
- @ApiModelProperty("整改意见")
- private String rectSugg;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
- private String status;
- @ApiModelProperty("记录人员ID")
- private String recPersId;
- @ApiModelProperty("记录人员")
- private String recPers;
- @ApiModelProperty("记录人员电话")
- private String recPersTel;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- public BisInspEfpRgstrReasonsRecParam() {
- }
- 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 getReasons() {
- return reasons;
- }
- public void setReasons(String reasons) {
- this.reasons = reasons;
- }
- public String getRectSugg() {
- return rectSugg;
- }
- public void setRectSugg(String rectSugg) {
- this.rectSugg = rectSugg;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getRecPersId() {
- return recPersId;
- }
- public void setRecPersId(String recPersId) {
- this.recPersId = recPersId;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- 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;
- }
- }
|