OrgUwatBaseWithExtVO.java 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.goldenwater.web.domain;
  2. import com.goldenwater.common.core.domain.entity.AttOrgUwatBase;
  3. import com.goldenwater.common.core.domain.entity.AttOrgUwatExt;
  4. import com.goldenwater.common.core.domain.entity.SysDept;
  5. /**
  6. * 参建单位基础信息与扩展信息联合提交 VO
  7. */
  8. public class OrgUwatBaseWithExtVO
  9. {
  10. /** 参建单位基础信息(att_org_uwat_base) */
  11. private AttOrgUwatBase base;
  12. /** 参建单位扩展信息(att_org_uwat_ext) */
  13. private AttOrgUwatExt ext;
  14. private SysDept dept;
  15. public AttOrgUwatBase getBase()
  16. {
  17. return base;
  18. }
  19. public void setBase(AttOrgUwatBase base)
  20. {
  21. this.base = base;
  22. }
  23. public AttOrgUwatExt getExt()
  24. {
  25. return ext;
  26. }
  27. public void setExt(AttOrgUwatExt ext)
  28. {
  29. this.ext = ext;
  30. }
  31. public SysDept getDept()
  32. {
  33. return dept;
  34. }
  35. public void setDept(SysDept dept)
  36. {
  37. this.dept = dept;
  38. }
  39. }