ca5a107fcc7b2727c0d55ab65d64b886afa98c1d.svn-base 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. * @author lhc
  7. * @date 2020/3/16 13:44
  8. */
  9. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  10. public class BisInspOffLineRsmlRgeister extends BaseBean implements Serializable {
  11. private BisInspRsmlRgstrPres bisInspRsmlRgstrPres;//“三个责任人”落实情况
  12. private BisInspRsmlRgstrRunManage bisInspRsmlRgstrRunManage;//运行情况 BIS_INSP_RSML_RGSTR_RUN_MANAGE
  13. private BisInspRsmlRgstrProject bisInspRsmlRgstrProject; //水库工程实体 BIS_INSP_RSML_RGSTR_PROJECT
  14. private BisInspOffLineRsml bisInspOffLineRsml;//中型水库上传替换对象
  15. private BisInspRsmlRgstrSafe bisInspRsmlRgstrSafe;//水库安全管理三级责任人
  16. public BisInspOffLineRsmlRgeister() {
  17. }
  18. public BisInspOffLineRsml getBisInspOffLineRsml() {
  19. return bisInspOffLineRsml;
  20. }
  21. public void setBisInspOffLineRsml(BisInspOffLineRsml bisInspOffLineRsml) {
  22. this.bisInspOffLineRsml = bisInspOffLineRsml;
  23. }
  24. public BisInspRsmlRgstrPres getBisInspRsmlRgstrPres() {
  25. return bisInspRsmlRgstrPres;
  26. }
  27. public void setBisInspRsmlRgstrPres(BisInspRsmlRgstrPres bisInspRsmlRgstrPres) {
  28. this.bisInspRsmlRgstrPres = bisInspRsmlRgstrPres;
  29. }
  30. public BisInspRsmlRgstrRunManage getBisInspRsmlRgstrRunManage() {
  31. return bisInspRsmlRgstrRunManage;
  32. }
  33. public void setBisInspRsmlRgstrRunManage(BisInspRsmlRgstrRunManage bisInspRsmlRgstrRunManage) {
  34. this.bisInspRsmlRgstrRunManage = bisInspRsmlRgstrRunManage;
  35. }
  36. public BisInspRsmlRgstrProject getBisInspRsmlRgstrProject() {
  37. return bisInspRsmlRgstrProject;
  38. }
  39. public void setBisInspRsmlRgstrProject(BisInspRsmlRgstrProject bisInspRsmlRgstrProject) {
  40. this.bisInspRsmlRgstrProject = bisInspRsmlRgstrProject;
  41. }
  42. public BisInspRsmlRgstrSafe getBisInspRsmlRgstrSafe() {
  43. return bisInspRsmlRgstrSafe;
  44. }
  45. public void setBisInspRsmlRgstrSafe(BisInspRsmlRgstrSafe bisInspRsmlRgstrSafe) {
  46. this.bisInspRsmlRgstrSafe = bisInspRsmlRgstrSafe;
  47. }
  48. }