54f1d4bcda696d88c6b14b06b79b090b254ff8f0.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import java.io.Serializable;
  5. /**
  6. * 取水口填报对象
  7. *
  8. * @author zhangcheng
  9. * @date 2019/11/27 15:13
  10. */
  11. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  12. public class BisInspOffLineWiuRgeister extends BaseBean implements Serializable {
  13. //BIS_INSP_WIU_RGSTR
  14. private AttWiuBase base;//取用水户基础信息表 ATT_WIU_BASE
  15. private BisInspWiuRgstr bisInspWiuRgstr;// 取水建管情况登记表 BIS_INSP_WIU_RGSTR
  16. private BisInspWiuRgstrIntInfo bisInspWiuRgstrIntInfo;//取水口取水及监管情况检查表 BIS_INSP_WIU_RGSTR_INT_INFO
  17. public BisInspOffLineWiuRgeister() {
  18. }
  19. public AttWiuBase getBase() {
  20. return base;
  21. }
  22. public void setBase(AttWiuBase base) {
  23. this.base = base;
  24. }
  25. public BisInspWiuRgstr getBisInspWiuRgstr() {
  26. return bisInspWiuRgstr;
  27. }
  28. public void setBisInspWiuRgstr(BisInspWiuRgstr bisInspWiuRgstr) {
  29. this.bisInspWiuRgstr = bisInspWiuRgstr;
  30. }
  31. public BisInspWiuRgstrIntInfo getBisInspWiuRgstrIntInfo() {
  32. return bisInspWiuRgstrIntInfo;
  33. }
  34. public void setBisInspWiuRgstrIntInfo(BisInspWiuRgstrIntInfo bisInspWiuRgstrIntInfo) {
  35. this.bisInspWiuRgstrIntInfo = bisInspWiuRgstrIntInfo;
  36. }
  37. }