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);
|
|
}
|