6b75491e5f627f3d530717628b650c47a8e9b3f5.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. * BisInspRectNotParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class BisInspRectNotParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String pblmId;
  15. private String rectId;
  16. private Date rectTerm;
  17. private String rectSugg;
  18. private String dataStat;
  19. private String recPers;
  20. private Date collTime;
  21. private String note;
  22. public BisInspRectNotParam() {
  23. }
  24. public String getGuid() {
  25. return guid;
  26. }
  27. public void setGuid(String guid) {
  28. this.guid = guid;
  29. }
  30. public String getPblmId() {
  31. return pblmId;
  32. }
  33. public void setPblmId(String pblmId) {
  34. this.pblmId = pblmId;
  35. }
  36. public String getRectId() {
  37. return rectId;
  38. }
  39. public void setRectId(String rectId) {
  40. this.rectId = rectId;
  41. }
  42. public Date getRectTerm() {
  43. return rectTerm;
  44. }
  45. public void setRectTerm(Date rectTerm) {
  46. this.rectTerm = rectTerm;
  47. }
  48. public String getRectSugg() {
  49. return rectSugg;
  50. }
  51. public void setRectSugg(String rectSugg) {
  52. this.rectSugg = rectSugg;
  53. }
  54. public String getDataStat() {
  55. return dataStat;
  56. }
  57. public void setDataStat(String dataStat) {
  58. this.dataStat = dataStat;
  59. }
  60. public String getRecPers() {
  61. return recPers;
  62. }
  63. public void setRecPers(String recPers) {
  64. this.recPers = recPers;
  65. }
  66. public Date getCollTime() {
  67. return collTime;
  68. }
  69. public void setCollTime(Date collTime) {
  70. this.collTime = collTime;
  71. }
  72. public String getNote() {
  73. return note;
  74. }
  75. public void setNote(String note) {
  76. this.note = note;
  77. }
  78. }