YlbService.java
1.31 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
38
39
40
41
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> 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);
String getModifyRights();
String modifyRightsChange();
String getModifyRightsPj();
String modifyRightsChangePj();
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> update(Map<String, Object> map);
}