YlbService.java
1.03 KB
package com.bsth.service.oil;
import com.bsth.entity.oil.Ylb;
import com.bsth.service.BaseService;
import java.util.List;
import java.util.Map;
public interface YlbService extends BaseService<Ylb, Integer>{
Map<String, Object> obtain(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);
List<Ylb> oilListMonth(String line,String date,String type);
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;
}