| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import cn.com.goldenwater.dcproj.model.BisInspPblm;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- import java.util.List;
- /**
- * entity:BisInspWtdst
- *
- * @author zhengdafei
- * @date 2019-2-21
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspWtdstDto extends BaseBean implements Serializable {
- // 水毁修复清单ID
- private String wtdstId;
- // 类别名称
- private String wtdstType;
- // 项目名称
- private String wtdstNm;
- // 修复状态
- private String wtdstState;
- // 所在行政区划代码
- private String locAd;
- // 水毁情况
- private String wtdstDtle;
- // 主要工程量
- private String wtdstWrkam;
- // 计划修复日期
- private String planRcvrTm;
- // 插入时间
- private String intm;
- // 最后更新时间
- private String uptm;
- // 备注
- private String note;
- // 水毁位置经度
- private Double wtdstLgtd;
- // 水毁位置纬度
- private Double wtdstLttd;
- // 项目所在位置
- private String locNm;
- private List<BisInspPblm> list;
- public List<BisInspPblm> getList() {
- return list;
- }
- public void setList(List<BisInspPblm> list) {
- this.list = list;
- }
- public BisInspWtdstDto() {
- }
- public String getWtdstId() {
- return wtdstId;
- }
- public void setWtdstId(String wtdstId) {
- this.wtdstId = wtdstId;
- }
- public String getWtdstType() {
- return wtdstType;
- }
- public void setWtdstType(String wtdstType) {
- this.wtdstType = wtdstType;
- }
- public String getWtdstNm() {
- return wtdstNm;
- }
- public void setWtdstNm(String wtdstNm) {
- this.wtdstNm = wtdstNm;
- }
- public String getWtdstState() {
- return wtdstState;
- }
- public void setWtdstState(String wtdstState) {
- this.wtdstState = wtdstState;
- }
- public String getLocAd() {
- return locAd;
- }
- public void setLocAd(String locAd) {
- this.locAd = locAd;
- }
- public String getWtdstDtle() {
- return wtdstDtle;
- }
- public void setWtdstDtle(String wtdstDtle) {
- this.wtdstDtle = wtdstDtle;
- }
- public String getWtdstWrkam() {
- return wtdstWrkam;
- }
- public void setWtdstWrkam(String wtdstWrkam) {
- this.wtdstWrkam = wtdstWrkam;
- }
- public String getPlanRcvrTm() {
- return planRcvrTm;
- }
- public void setPlanRcvrTm(String planRcvrTm) {
- this.planRcvrTm = planRcvrTm;
- }
- public String getIntm() {
- return intm;
- }
- public void setIntm(String intm) {
- this.intm = intm;
- }
- public String getUptm() {
- return uptm;
- }
- public void setUptm(String uptm) {
- this.uptm = uptm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Double getWtdstLgtd() {
- return wtdstLgtd;
- }
- public void setWtdstLgtd(Double wtdstLgtd) {
- this.wtdstLgtd = wtdstLgtd;
- }
- public Double getWtdstLttd() {
- return wtdstLttd;
- }
- public void setWtdstLttd(Double wtdstLttd) {
- this.wtdstLttd = wtdstLttd;
- }
- public String getLocNm() {
- return locNm;
- }
- public void setLocNm(String locNm) {
- this.locNm = locNm;
- }
- @Override
- public String toString() {
- return "BisInspWtdst [" + "wtdstId=" + wtdstId + ", wtdstType=" + wtdstType + ", wtdstNm=" + wtdstNm + ", wtdstState=" + wtdstState + ", locAd=" + locAd + ", wtdstDtle=" + wtdstDtle + ", wtdstWrkam=" + wtdstWrkam + ", planRcvrTm=" + planRcvrTm + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", wtdstLgtd=" + wtdstLgtd + ", wtdstLttd=" + wtdstLttd + ", locNm=" + locNm + "]";
- }
- }
|