package com.newfiber.api.pc.model.EventsManage; /** * Created by XuChengChao on 2019/5/21. */ public class ComplaintStatic { private String sourceName; //处理中 private int disposeING; //已完结 private int finished; //已复核 private int hasChecked; //已处理 private int disposed; //已挂账 private int efficient; //总计 private int total; private int toBeReport; public int getToBeReport() { return toBeReport; } public void setToBeReport(int toBeReport) { this.toBeReport = toBeReport; } //办结率 private double finishRate; public ComplaintStatic() { } public String getSourceName() { return sourceName; } public void setSourceName(String sourceName) { this.sourceName = sourceName; } public int getDisposeING() { return disposeING; } public void setDisposeING(int disposeING) { this.disposeING = disposeING; } public int getFinished() { return finished; } public void setFinished(int finished) { this.finished = finished; } public int getHasChecked() { return hasChecked; } public void setHasChecked(int hasChecked) { this.hasChecked = hasChecked; } public int getDisposed() { return disposed; } public void setDisposed(int disposed) { this.disposed = disposed; } public int getEfficient() { return efficient; } public void setEfficient(int efficient) { this.efficient = efficient; } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public double getFinishRate() { return finishRate; } public void setFinishRate(double finishRate) { this.finishRate = finishRate; } }