首先有一个父类:
protected <T extends Model> List<T> PostData(String serviceName,
SearchInfo info){
return null;
}
然后有一个子类:
你试一下super.PostData("xxx",info);
public class AccessDataController extends Service implements IAccessStatistics {
@Override
public List<AccessStatisticsInfo> Search(SearchInfo info) throws ApiException {
// 这里应该如何调用父类Service中的PostData方法
}
}