ComparableReal.java
435 Bytes
package com.bsth.util;
import java.util.Comparator;
import java.util.List;
import com.bsth.entity.realcontrol.ChildTaskPlan;
import com.bsth.entity.realcontrol.ScheduleRealInfo;
public class ComparableReal implements Comparator<ScheduleRealInfo>{
@Override
public int compare(ScheduleRealInfo o1, ScheduleRealInfo o2) {
// TODO Auto-generated method stub
return o1.getFcsjT().compareTo(o2.getFcsjT());
}
}