2d570f6c4aae776249000d8156220a024e83a6c8.svn-base 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.sinosoft.em.baobiao.xianlutingyun.vo;
  2. import java.util.List;
  3. public class ReportTaskBean {
  4. private String schedule;//事件名称
  5. private List<ReportContent> beanList;
  6. private String cfRole;
  7. private String report_type;
  8. private List<String> fdIds;
  9. private String affair;//事件id
  10. private List<String> time;
  11. private int totalNum;
  12. private int writeNum;
  13. public String getReport_type() {
  14. return report_type;
  15. }
  16. public void setReport_type(String report_type) {
  17. this.report_type = report_type;
  18. }
  19. public String getCfRole(){
  20. return cfRole;
  21. }
  22. public void setCfRole(String cfRole) {
  23. this.cfRole = cfRole;
  24. }
  25. public String getSchedule() {
  26. return schedule;
  27. }
  28. public void setSchedule(String schedule) {
  29. this.schedule = schedule;
  30. }
  31. public List<ReportContent> getReportContent() {
  32. return beanList;
  33. }
  34. public void setReportContent(List<ReportContent> reportContent) {
  35. this.beanList = reportContent;
  36. }
  37. public List<String> getFdIds() {
  38. return fdIds;
  39. }
  40. public void setFdIds(List<String> fdIds) {
  41. this.fdIds = fdIds;
  42. }
  43. public String getAffair() {
  44. return affair;
  45. }
  46. public void setAffair(String affair) {
  47. this.affair = affair;
  48. }
  49. public int getTotalNum() {
  50. return totalNum;
  51. }
  52. public void setTotalNum(int totalNum) {
  53. this.totalNum = totalNum;
  54. }
  55. public int getWriteNum() {
  56. return writeNum;
  57. }
  58. public void setWriteNum(int writeNum) {
  59. this.writeNum = writeNum;
  60. }
  61. public List<String> getTime() {
  62. return time;
  63. }
  64. public void setTime(List<String> time) {
  65. this.time = time;
  66. }
  67. @Override
  68. public String toString() {
  69. return "ReportTaskBean [schedule=" + schedule + ", beanList="
  70. + beanList + ", cfRole=" + cfRole + ", report_type="
  71. + report_type + ", fdIds=" + fdIds + ", affair=" + affair
  72. + ", time=" + time + ", totalNum=" + totalNum + ", writeNum="
  73. + writeNum + "]";
  74. }
  75. }