820bcb699e86107b1e4345591f57b5b8273edc6b.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. * BisInspSchemeParam
  8. *
  9. * @author lune
  10. * @date 2019-2-19
  11. */
  12. public class BisInspSchemeParam extends PageParam implements Serializable {
  13. private String guid;
  14. private String schmId;
  15. private String schmTitle;
  16. private String schmContent;
  17. private String schmMkps;
  18. private Date schmSttm;
  19. private Date schmEnttm;
  20. private Date schmIntm;
  21. private Date schmUptm;
  22. private String schmNote;
  23. public BisInspSchemeParam() {
  24. }
  25. public String getGuid() {
  26. return guid;
  27. }
  28. public void setGuid(String guid) {
  29. this.guid = guid;
  30. }
  31. public String getSchmId() {
  32. return schmId;
  33. }
  34. public void setSchmId(String schmId) {
  35. this.schmId = schmId;
  36. }
  37. public String getSchmTitle() {
  38. return schmTitle;
  39. }
  40. public void setSchmTitle(String schmTitle) {
  41. this.schmTitle = schmTitle;
  42. }
  43. public String getSchmContent() {
  44. return schmContent;
  45. }
  46. public void setSchmContent(String schmContent) {
  47. this.schmContent = schmContent;
  48. }
  49. public String getSchmMkps() {
  50. return schmMkps;
  51. }
  52. public void setSchmMkps(String schmMkps) {
  53. this.schmMkps = schmMkps;
  54. }
  55. public Date getSchmSttm() {
  56. return schmSttm;
  57. }
  58. public void setSchmSttm(Date schmSttm) {
  59. this.schmSttm = schmSttm;
  60. }
  61. public Date getSchmEnttm() {
  62. return schmEnttm;
  63. }
  64. public void setSchmEnttm(Date schmEnttm) {
  65. this.schmEnttm = schmEnttm;
  66. }
  67. public Date getSchmIntm() {
  68. return schmIntm;
  69. }
  70. public void setSchmIntm(Date schmIntm) {
  71. this.schmIntm = schmIntm;
  72. }
  73. public Date getSchmUptm() {
  74. return schmUptm;
  75. }
  76. public void setSchmUptm(Date schmUptm) {
  77. this.schmUptm = schmUptm;
  78. }
  79. public String getSchmNote() {
  80. return schmNote;
  81. }
  82. public void setSchmNote(String schmNote) {
  83. this.schmNote = schmNote;
  84. }
  85. }