DlbService.java
809 Bytes
package com.bsth.service.oil;
import java.util.List;
import java.util.Map;
import com.bsth.entity.oil.Dlb;
import com.bsth.service.BaseService;
public interface DlbService extends BaseService<Dlb, Integer>{
Map<String, Object> obtain(Map<String, Object> map) throws Exception;
Map<String, Object> sort(Map<String, Object> map);
Map<String, Object> checkDl(Map<String, Object> map);
List<Dlb> listDlb(Map<String, Object> map);
Map<String, Object> sumYlb(Map<String, Object> map);
Map<String, Object> saveDlbList(Map<String, Object> map) throws Exception;
String obtainDsq() throws Exception;
String checkJsy(Map<String, Object> map);
Map<String, Object> saveDlb(Dlb t);
Map<String, Object> deleteIds(Map<String, Object> map) throws Exception;
}