#
18516761980
2022-07-28 65fa066e222f6472badf7323c3b301417b674fdb
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
package com.slcf.dao;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
import com.slcf.bean.WaitCheckLogCondition;
import com.slcf.pojo.WaitCheckLogBean;
 
@Repository
public interface WaitCheckLogDao {
 
    //分页查询所有信息
    public List<WaitCheckLogBean> queryWaitCheckLogList(WaitCheckLogCondition waitCheckCon);
    
    //根据过滤条件统计总数量
    public int getWaitCheckLogCount(WaitCheckLogCondition waitCheckCon);
    
    /**
     * 查询所有
     * @return
     */
    @Select("select * from cust_wait_check_log order by appe_time,matnr desc")
    public List<WaitCheckLogBean> getWaitCheckLogList();
    
}