PREPAREMASTERMapper.java
1.1 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.tianbo.analysis.dao;
import com.tianbo.analysis.model.PREPAREMASTER;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface PREPAREMASTERMapper {
int deleteByPrimaryKey(String autoid);
int insert(PREPAREMASTER record);
int insertSelective(PREPAREMASTER record);
PREPAREMASTER selectByPrimaryKey(String autoid);
/**
* 根据主单号查询需要提前运抵的预配
* @param waybillNo
* @return
*/
List<PREPAREMASTER> selectArrivedAheadByWaybillNo(String waybillNo);
List<PREPAREMASTER> selectBy(PREPAREMASTER record);
int updateByPrimaryKeySelective(PREPAREMASTER record);
int updateByPrimaryKey(PREPAREMASTER record);
int updatePreArrivedBill(PREPAREMASTER record);
List<PREPAREMASTER> searchTree(@Param("waybillnomaster") String var1,
@Param("flightNo")String var2,
@Param("flightDate")String var3,
@Param("carrier")String var4
);
List<PREPAREMASTER> searchSec(String autoid);
}