CalcWaybillService.java
512 Bytes
package com.bsth.service.calc;
import java.util.List;
import java.util.Map;
import com.bsth.entity.calc.CalcWaybill;
import com.bsth.service.BaseService;
/**
* Created by 17/11/16.
*/
public interface CalcWaybillService extends BaseService<CalcWaybill, Integer> {
Map<String, Object> generateNew(String date, String line) throws Exception;
List<Map<String, Object>> statisticsDailyTj(String gsdm,String fgsdm, String line, String date, String date2, String xlName, String type);
}