YlbService.java 1.38 KB
package com.bsth.service.oil;

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

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

public interface YlbService extends BaseService<Ylb, Integer>{
	Map<String, Object> obtain(Map<String, Object> map) throws Exception;
	Map<String, Object> obtainJd(Map<String, Object> map) throws Exception;

	Map<String, Object> saveYlbList(Map<String, Object> map) throws Exception;
	Map<String, Object> saveYlb(Ylb t);
	String obtainDsq() throws Exception;
	Map<String, Object> sort(Map<String, Object> map)  throws Exception;
	
	Map<String, Object> outAndIn(Map<String, Object> map) throws Exception;
	
	Map<String, Object> checkYl(Map<String, Object> map)  throws Exception;
	
	Map<String, Object> sumYlb(Map<String, Object> map);
	String checkJsy(Map<String, Object> map);
	String checkDate(Map<String, Object> map);

	List<Map<String, Object>> oilListMonth(Map<String, Object> map);
	List<Ylb> listYlb(Map<String, Object> map);
	StringBuffer checkNbmmNum(String rq, String gsbm,String fgsbm,String xlbm,String nbbm,int lx);
	
	Map<String, Object> deleteIds(Map<String, Object> map) throws Exception;
	
	Map<String, Object> updateHistory(Map<String, Object> map) throws Exception;
	Map<String, Object> updateHistoryJd(Map<String, Object> map) throws Exception;
	Map<String, Object> update(Map<String, Object> map);


	
}