| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * @author lhc
- * @date 2019/11/18 13:44
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspOffLineRsvr extends BaseBean implements Serializable {
- public BisInspOffLineRsvr() {
- }
- @ApiModelProperty(value = "登记表ID", name = "rgstrId")
- private String rgstrId;
- @ApiModelProperty(value = "code", name = "objId")
- private String objId;
- @ApiModelProperty(value = "三个责任人是否替换", name = "basePresExt")
- private Boolean basePresExt;//三个责任人是否替换
- @ApiModelProperty(value = "三重点环节是否替换", name = "baseExt")
- private Boolean baseExt;//三重点环节是否替换
- @ApiModelProperty(value = "水库工程实体情况是否替换", name = "rsvrProject")
- private Boolean rsvrProject;//水库工程实体情况是否替换
- @ApiModelProperty(value = "运行管理是否替换", name = "safeExtManage")
- private Boolean safeExtManage;//运行管理是否替换
- @ApiModelProperty(value = "效益发挥", name = "benefits")
- private Boolean benefits;
- @ApiModelProperty(value = "安全鉴定及除险加固", name = "rein")
- private Boolean rein;//安全鉴定及除险加固
- @ApiModelProperty(value = "安全运行总体评价", name = "dam")
- private Boolean dam;//安全运行总体评价
- private Boolean presSafe;//水库安全管理三级责任人
- @Override
- public String getObjId() {
- return objId;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public Boolean getBasePresExt() {
- return basePresExt;
- }
- public void setBasePresExt(Boolean basePresExt) {
- this.basePresExt = basePresExt;
- }
- public Boolean getBaseExt() {
- return baseExt;
- }
- public void setBaseExt(Boolean baseExt) {
- this.baseExt = baseExt;
- }
- public Boolean getRsvrProject() {
- return rsvrProject;
- }
- public void setRsvrProject(Boolean rsvrProject) {
- this.rsvrProject = rsvrProject;
- }
- public Boolean getSafeExtManage() {
- return safeExtManage;
- }
- public void setSafeExtManage(Boolean safeExtManage) {
- this.safeExtManage = safeExtManage;
- }
- public Boolean getBenefits() {
- return benefits;
- }
- public void setBenefits(Boolean benefits) {
- this.benefits = benefits;
- }
- public Boolean getRein() {
- return rein;
- }
- public void setRein(Boolean rein) {
- this.rein = rein;
- }
- public Boolean getDam() {
- return dam;
- }
- public void setDam(Boolean dam) {
- this.dam = dam;
- }
- public Boolean getPresSafe() {
- return presSafe;
- }
- public void setPresSafe(Boolean presSafe) {
- this.presSafe = presSafe;
- }
- }
|