4c55bbd217ed659b15639633cebed50278356865.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspTaskDthDay;
  3. /**
  4. * @author
  5. */
  6. public class BisInspTaskDthDayDto extends BisInspTaskDthDay {
  7. private String timeType;
  8. /**
  9. * 稽察 年度
  10. */
  11. private String year;
  12. /**
  13. * 稽察 批次
  14. */
  15. private String batch;
  16. /**
  17. * 稽察 最后步骤
  18. */
  19. private String lastStepId;
  20. private String persId;
  21. private String[] rgsterTable;
  22. /**
  23. * 对比 类型
  24. * @return
  25. */
  26. private String compareType;
  27. /**
  28. * 展示条数
  29. * @return
  30. */
  31. private Integer topNum;
  32. /**
  33. * 办公动态
  34. * 1 法律法规
  35. * 2 最新问题
  36. * 3 待办事项
  37. * @return
  38. */
  39. private Integer topType;
  40. public String getPersId() {
  41. return persId;
  42. }
  43. public void setPersId(String persId) {
  44. this.persId = persId;
  45. }
  46. public String[] getRgsterTable() {
  47. return rgsterTable;
  48. }
  49. public void setRgsterTable(String[] rgsterTable) {
  50. this.rgsterTable = rgsterTable;
  51. }
  52. public String getLastStepId() {
  53. return lastStepId;
  54. }
  55. public void setLastStepId(String lastStepId) {
  56. this.lastStepId = lastStepId;
  57. }
  58. public String getYear() {
  59. return year;
  60. }
  61. public void setYear(String year) {
  62. this.year = year;
  63. }
  64. public String getBatch() {
  65. return batch;
  66. }
  67. public void setBatch(String batch) {
  68. this.batch = batch;
  69. }
  70. public String getTimeType() {
  71. return timeType;
  72. }
  73. public void setTimeType(String timeType) {
  74. this.timeType = timeType;
  75. }
  76. public String getCompareType() {
  77. return compareType;
  78. }
  79. public void setCompareType(String compareType) {
  80. this.compareType = compareType;
  81. }
  82. public Integer getTopNum() {
  83. return topNum;
  84. }
  85. public void setTopNum(Integer topNum) {
  86. this.topNum = topNum;
  87. }
  88. public Integer getTopType() {
  89. return topType;
  90. }
  91. public void setTopType(Integer topType) {
  92. this.topType = topType;
  93. }
  94. }