LandBusListService.java
1.2 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
package com.sy.service;
import com.sy.model.LandBusinessTypeList;
import java.util.List;
public interface LandBusListService {
List<LandBusinessTypeList> selectByFrameNoAndType(String frameNo, String flag);
int updateById(LandBusinessTypeList list);
int saveList(LandBusinessTypeList list);
/**
*
* @param frameNo 车牌号
* @param barcode 二维码
* @param station 场站ID/号
* @param aisle 通道ID/号
* @param flag 进出业务类型标识I/E
* @return
*/
LandBusinessTypeList selectForOne(String frameNo, String barcode, String station, String aisle, String flag);
List<LandBusinessTypeList> selectByBarcode(String barcode);
int updateByBarcode(String barcode);
List<LandBusinessTypeList> selectMessageId(String messageId);
//查询进场过磅重量,货物重量
List<LandBusinessTypeList> selectwt(String frameNo, String barcode, String station, String flag);
//失效已进场或出场的申请记录
int updateisvalid(String frameNo, String barcode, String station, String flag);
//查询出场申请为最后一个
int selectlaststation(String frameNo, String barcode);
}