KPICargoBillServcie.java
623 字节
package com.tianbo.service;
import com.tianbo.model.TKpiCargoWaybill;
import com.tianbo.model.TKpiCargoWaybillExample;
import java.math.BigDecimal;
import java.util.List;
public interface KPICargoBillServcie {
List<TKpiCargoWaybill> selectByExample(TKpiCargoWaybillExample example);
int countByExample(TKpiCargoWaybillExample example);
BigDecimal sumWeightByExample(TKpiCargoWaybillExample example);
BigDecimal sumPcsByExample(TKpiCargoWaybillExample example);
BigDecimal sumVolByExample(TKpiCargoWaybillExample example);
BigDecimal sumHbillqtyByExample(TKpiCargoWaybillExample example);
}