4353aa2358e08c0d7d4c046fe4e71ed62de3e1ec.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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:RelRectNotOrg
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class RelRectNotOrg extends BaseBean implements Serializable {
  14. private String guid;
  15. private String orgGuid;
  16. private String notOrgType;
  17. private Date fromDate;
  18. private Date toDate;
  19. public RelRectNotOrg() {
  20. }
  21. public String getGuid() {
  22. return guid;
  23. }
  24. public void setGuid(String guid) {
  25. this.guid = guid;
  26. }
  27. public String getOrgGuid() {
  28. return orgGuid;
  29. }
  30. public void setOrgGuid(String orgGuid) {
  31. this.orgGuid = orgGuid;
  32. }
  33. public String getNotOrgType() {
  34. return notOrgType;
  35. }
  36. public void setNotOrgType(String notOrgType) {
  37. this.notOrgType = notOrgType;
  38. }
  39. public Date getFromDate() {
  40. return fromDate;
  41. }
  42. public void setFromDate(Date fromDate) {
  43. this.fromDate = fromDate;
  44. }
  45. public Date getToDate() {
  46. return toDate;
  47. }
  48. public void setToDate(Date toDate) {
  49. this.toDate = toDate;
  50. }
  51. @Override
  52. public String toString() {
  53. return "RelRectNotOrg [" + "guid=" + guid + ", orgGuid=" + orgGuid + ", notOrgType=" + notOrgType + ", fromDate=" + fromDate + ", toDate=" + toDate + "]";
  54. }
  55. }