package com.hboxs.dto; import java.math.BigInteger; /** * 用来统计商家增长的数量 */ public class CleanStatisticsDTO implements Comparable { private String sTime; private long totalNumber; public String getsTime() { return sTime; } public void setsTime(String sTime) { this.sTime = sTime; } public long getTotalNumber() { return totalNumber; } public void setTotalNumber(long totalNumber) { this.totalNumber = totalNumber; } @Override public int compareTo(CleanStatisticsDTO o) { return this.getsTime().compareTo(o.getsTime()); } }