Helius
2020-12-15 2914588a65371a3ce43f678cde0a26cd8da26611
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.matrix.system.hive.dao;
 
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.pojo.AllotedAndInstored;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
 
public interface AllotedAndInstoredDao {
    /**分页查询入库单和调拨的信息,用type来标识,type=1表示入库单,type=2表示调拨单
     * @param allotedAndInstored
     * @param pageVo
     * @return
     */
    public List<AllotedAndInstored> selectInPage(@Param("record") AllotedAndInstored allotedAndInstored, @Param("pageVo") PaginationVO pageVo);
    
    public int selectTotalRecord(@Param("record") AllotedAndInstored allotedAndInstored);
 
}