12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.sinosoft.em.baobiao.xianlutingyun.vo;
- import java.util.List;
- public class ReportTaskBean {
- private String schedule;//事件名称
- private List<ReportContent> beanList;
- private String cfRole;
- private String report_type;
- private List<String> fdIds;
- private String affair;//事件id
- private List<String> time;
- private int totalNum;
- private int writeNum;
-
- public String getReport_type() {
- return report_type;
- }
- public void setReport_type(String report_type) {
- this.report_type = report_type;
- }
- public String getCfRole(){
- return cfRole;
- }
- public void setCfRole(String cfRole) {
- this.cfRole = cfRole;
- }
- public String getSchedule() {
- return schedule;
- }
- public void setSchedule(String schedule) {
- this.schedule = schedule;
- }
- public List<ReportContent> getReportContent() {
- return beanList;
- }
- public void setReportContent(List<ReportContent> reportContent) {
- this.beanList = reportContent;
- }
- public List<String> getFdIds() {
- return fdIds;
- }
- public void setFdIds(List<String> fdIds) {
- this.fdIds = fdIds;
- }
- public String getAffair() {
- return affair;
- }
- public void setAffair(String affair) {
- this.affair = affair;
- }
- public int getTotalNum() {
- return totalNum;
- }
- public void setTotalNum(int totalNum) {
- this.totalNum = totalNum;
- }
- public int getWriteNum() {
- return writeNum;
- }
- public void setWriteNum(int writeNum) {
- this.writeNum = writeNum;
- }
- public List<String> getTime() {
- return time;
- }
- public void setTime(List<String> time) {
- this.time = time;
- }
- @Override
- public String toString() {
- return "ReportTaskBean [schedule=" + schedule + ", beanList="
- + beanList + ", cfRole=" + cfRole + ", report_type="
- + report_type + ", fdIds=" + fdIds + ", affair=" + affair
- + ", time=" + time + ", totalNum=" + totalNum + ", writeNum="
- + writeNum + "]";
- }
-
- }
|