78e125639a2e799973f84bc4747e646183d0485c.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. /**
  7. * RelRectNotOrgParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class RelRectNotOrgParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String orgGuid;
  15. private String notOrgType;
  16. private Date fromDate;
  17. private Date toDate;
  18. public RelRectNotOrgParam() {
  19. }
  20. public String getGuid() {
  21. return guid;
  22. }
  23. public void setGuid(String guid) {
  24. this.guid = guid;
  25. }
  26. public String getOrgGuid() {
  27. return orgGuid;
  28. }
  29. public void setOrgGuid(String orgGuid) {
  30. this.orgGuid = orgGuid;
  31. }
  32. public String getNotOrgType() {
  33. return notOrgType;
  34. }
  35. public void setNotOrgType(String notOrgType) {
  36. this.notOrgType = notOrgType;
  37. }
  38. public Date getFromDate() {
  39. return fromDate;
  40. }
  41. public void setFromDate(Date fromDate) {
  42. this.fromDate = fromDate;
  43. }
  44. public Date getToDate() {
  45. return toDate;
  46. }
  47. public void setToDate(Date toDate) {
  48. this.toDate = toDate;
  49. }
  50. }