java110
2021-05-15 811e8e7139ad6e331c2f84bcd5cf3f927a8b3312
java110-bean/src/main/java/com/java110/entity/center/Business.java
@@ -7,7 +7,7 @@
 * 业务数据
 * Created by wuxw on 2018/4/13.
 */
public class Business implements Comparable{
public class Business implements Comparable<Business>{
    private String bId;
@@ -167,8 +167,7 @@
    }
    @Override
    public int compareTo(Object o) {
        Business otherBusiness = (Business)o;
    public int compareTo(Business otherBusiness) {
        if(this.getSeq() > otherBusiness.getSeq()) {
            return -1;
        }