QlbService.java 959 Bytes
package com.bsth.service.oil;

import com.bsth.entity.oil.Qlb;
import com.bsth.service.BaseService;

import java.util.List;
import java.util.Map;

public interface QlbService extends BaseService<Qlb, Integer>{
	Map<String, Object> obtain(Map<String, Object> map) throws Exception;
	
	Map<String, Object> sort(Map<String, Object> map);
	
	Map<String, Object> checkQl(Map<String, Object> map);
	
	List<Qlb> listQlb(Map<String, Object> map);
	
	Map<String, Object> sumQlb(Map<String, Object> map);
	
	Map<String, Object> saveQlbList(Map<String, Object> map) throws Exception;
	
	String obtainDsq() throws Exception;
	
	String checkJsy(Map<String, Object> map);
	
	Map<String, Object> saveQlb(Qlb t);
	
	Map<String, Object> deleteIds(Map<String, Object> map) throws Exception;
	
	Map<String, List<Qlb>> updeteHistory(List<Map<String, Object>> list,String date,
		String gsdm,String fgsdm,String line) ;
	
	Map<String, Object> update(Map<String, Object> map);


}