b0b994b087a51f526a5d5637f1e86dfd0788eb16.svn-base 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:ReaInspOrg
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class ReaInspOrg extends BaseBean implements Serializable {
  14. private String guid;
  15. private String schmId;
  16. private Date intm;
  17. private Date uptm;
  18. public ReaInspOrg() {
  19. }
  20. public String getGuid() {
  21. return guid;
  22. }
  23. public void setGuid(String guid) {
  24. this.guid = guid;
  25. }
  26. public String getSchmId() {
  27. return schmId;
  28. }
  29. public void setSchmId(String schmId) {
  30. this.schmId = schmId;
  31. }
  32. public Date getIntm() {
  33. return intm;
  34. }
  35. public void setIntm(Date intm) {
  36. this.intm = intm;
  37. }
  38. public Date getUptm() {
  39. return uptm;
  40. }
  41. public void setUptm(Date uptm) {
  42. this.uptm = uptm;
  43. }
  44. @Override
  45. public String toString() {
  46. return "ReaInspOrg [" + "guid=" + guid + ", schmId=" + schmId + ", intm=" + intm + ", uptm=" + uptm + "]";
  47. }
  48. }