| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package cn.com.goldenwater.dcproj.model;
- import io.swagger.annotations.ApiModelProperty;
- public class BisInspRsvrRgstrDto extends BisInspRsvrRgstr {
- private String code;
- @ApiModelProperty("督查对象名称")
- private String nm;
- @ApiModelProperty("督查对象类型:1小水库,2人饮工程,3水毁,4地下水")
- private String ptype;
- private Double lgtd = 0.0;
- private Double lttd = 0.0;
- @ApiModelProperty("督查状态标识,0未督查,1督查中,2已督查")
- private String wtdstState;
- private String viewID;
- public String getWtdstState() {
- return wtdstState;
- }
- public void setWtdstState(String wtdstState) {
- this.wtdstState = wtdstState;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public String getViewID() {
- return viewID;
- }
- public void setViewID(String viewID) {
- this.viewID = viewID;
- }
- }
|