2235d25adefe612ba5f13b62966b1c18fc0c22ba.svn-base 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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/26 18:01
  10. */
  11. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  12. public class BisInspOffLineWuntRgeister extends BaseBean implements Serializable {
  13. //BIS_INSP_SVWT_WUNT_RGSTR
  14. private AttWuntBase base;//用水单位基础信息 ATT_WUNT_BASE
  15. private BisInspSvwtWuntRgstr bisInspSvwtWuntRgstr;// 用水单位登记表 BIS_INSP_SVWT_WUNT_RGSTR
  16. private BisInspSvwtWuntRgstrWsusw bisInspSvwtWuntRgstrWsusw;//BIS_INSP_SVWT_WUNT_RGSTR_WSUSW
  17. private BisInspSvwtWuntRgstrWuusw bisInspSvwtWuntRgstrWuusw;//BIS_INSP_SVWT_WUNT_RGSTR_WUUSW
  18. public BisInspOffLineWuntRgeister() {
  19. }
  20. public AttWuntBase getBase() {
  21. return base;
  22. }
  23. public void setBase(AttWuntBase base) {
  24. this.base = base;
  25. }
  26. public BisInspSvwtWuntRgstr getBisInspSvwtWuntRgstr() {
  27. return bisInspSvwtWuntRgstr;
  28. }
  29. public void setBisInspSvwtWuntRgstr(BisInspSvwtWuntRgstr bisInspSvwtWuntRgstr) {
  30. this.bisInspSvwtWuntRgstr = bisInspSvwtWuntRgstr;
  31. }
  32. public BisInspSvwtWuntRgstrWsusw getBisInspSvwtWuntRgstrWsusw() {
  33. return bisInspSvwtWuntRgstrWsusw;
  34. }
  35. public void setBisInspSvwtWuntRgstrWsusw(BisInspSvwtWuntRgstrWsusw bisInspSvwtWuntRgstrWsusw) {
  36. this.bisInspSvwtWuntRgstrWsusw = bisInspSvwtWuntRgstrWsusw;
  37. }
  38. public BisInspSvwtWuntRgstrWuusw getBisInspSvwtWuntRgstrWuusw() {
  39. return bisInspSvwtWuntRgstrWuusw;
  40. }
  41. public void setBisInspSvwtWuntRgstrWuusw(BisInspSvwtWuntRgstrWuusw bisInspSvwtWuntRgstrWuusw) {
  42. this.bisInspSvwtWuntRgstrWuusw = bisInspSvwtWuntRgstrWuusw;
  43. }
  44. }