| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package cn.com.goldenwater.dcproj.model;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:AttRsBase
- *
- * @author lune
- * @date 2019-2-22
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttRsBase extends RsBase implements Serializable {
- @ApiModelProperty("初查年度-新")
- private String inspYear;
- @ApiModelProperty("原工况评价-新")
- private String wcEvltOld;
- @ApiModelProperty("水库检查类型-新(1:重大安全隐患排查;2:整改情况复查;3:其他)")
- private String chkType;
- @ApiModelProperty("是否已实施除险加固-新(1:是;2:否)")
- private String isTrhbco;
- @ApiModelProperty("已实施除险加固情况-新(1:遗留问题;2:灾后薄弱;3:遗留问题及灾后薄弱;)")
- private String trhbcoInfo;
- @ApiModelProperty("是否是本年督查任务-新(1:是;2:否)")
- private String isTask;
- private String addvcd;
- private String regNo;
- public String getRegNo() {
- return regNo;
- }
- public void setRegNo(String regNo) {
- this.regNo = regNo;
- }
- public String getAddvcd() {
- return addvcd;
- }
- public void setAddvcd(String addvcd) {
- this.addvcd = addvcd;
- }
- public String getInspYear() {
- return inspYear;
- }
- public void setInspYear(String inspYear) {
- this.inspYear = inspYear;
- }
- public String getWcEvltOld() {
- return wcEvltOld;
- }
- public void setWcEvltOld(String wcEvltOld) {
- this.wcEvltOld = wcEvltOld;
- }
- public String getChkType() {
- return chkType;
- }
- public void setChkType(String chkType) {
- this.chkType = chkType;
- }
- public String getIsTrhbco() {
- return isTrhbco;
- }
- public void setIsTrhbco(String isTrhbco) {
- this.isTrhbco = isTrhbco;
- }
- public String getTrhbcoInfo() {
- return trhbcoInfo;
- }
- public void setTrhbcoInfo(String trhbcoInfo) {
- this.trhbcoInfo = trhbcoInfo;
- }
- public String getIsTask() {
- return isTask;
- }
- public void setIsTask(String isTask) {
- this.isTask = isTask;
- }
- @Override
- public String toString() {
- return "AttRsBase{" +
- "inspYear='" + inspYear + '\'' +
- ", wcEvltOld='" + wcEvltOld + '\'' +
- ", chkType='" + chkType + '\'' +
- ", isTrhbco='" + isTrhbco + '\'' +
- ", trhbcoInfo='" + trhbcoInfo + '\'' +
- ", isTask='" + isTask + '\'' +
- "} " + super.toString();
- }
- }
|