DlbService.java
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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> obtainJd(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;
Map<String, List<Dlb>> updeteHistory(List<Map<String, Object>> list,String date,
String gsdm,String fgsdm,String line) ;
Map<String, Object> update(Map<String, Object> map);
}