71c03ccf7d9ca4bdb801dcae0df528509a71b8a5.svn-base 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. * BisPntBaseParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class BisPntBaseParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String pblmId;
  15. private String inspObjGuid;
  16. private String pntCont;
  17. private String pblshOrgGuid;
  18. private String inspPblmDep;
  19. private String isResp;
  20. private String dataStat;
  21. private String recPers;
  22. private Date collTime;
  23. private String note;
  24. public BisPntBaseParam() {
  25. }
  26. public String getGuid() {
  27. return guid;
  28. }
  29. public void setGuid(String guid) {
  30. this.guid = guid;
  31. }
  32. public String getPblmId() {
  33. return pblmId;
  34. }
  35. public void setPblmId(String pblmId) {
  36. this.pblmId = pblmId;
  37. }
  38. public String getInspObjGuid() {
  39. return inspObjGuid;
  40. }
  41. public void setInspObjGuid(String inspObjGuid) {
  42. this.inspObjGuid = inspObjGuid;
  43. }
  44. public String getPntCont() {
  45. return pntCont;
  46. }
  47. public void setPntCont(String pntCont) {
  48. this.pntCont = pntCont;
  49. }
  50. public String getPblshOrgGuid() {
  51. return pblshOrgGuid;
  52. }
  53. public void setPblshOrgGuid(String pblshOrgGuid) {
  54. this.pblshOrgGuid = pblshOrgGuid;
  55. }
  56. public String getInspPblmDep() {
  57. return inspPblmDep;
  58. }
  59. public void setInspPblmDep(String inspPblmDep) {
  60. this.inspPblmDep = inspPblmDep;
  61. }
  62. public String getIsResp() {
  63. return isResp;
  64. }
  65. public void setIsResp(String isResp) {
  66. this.isResp = isResp;
  67. }
  68. public String getDataStat() {
  69. return dataStat;
  70. }
  71. public void setDataStat(String dataStat) {
  72. this.dataStat = dataStat;
  73. }
  74. public String getRecPers() {
  75. return recPers;
  76. }
  77. public void setRecPers(String recPers) {
  78. this.recPers = recPers;
  79. }
  80. public Date getCollTime() {
  81. return collTime;
  82. }
  83. public void setCollTime(Date collTime) {
  84. this.collTime = collTime;
  85. }
  86. public String getNote() {
  87. return note;
  88. }
  89. public void setNote(String note) {
  90. this.note = note;
  91. }
  92. }