package com.ld.igds.inout.mapper;
|
|
import com.baomidou.mybatisplus.plugins.Page;
|
import com.ld.igds.inout.dto.InoutCheckData;
|
import com.ld.igds.inout.dto.InoutCheckParam;
|
import com.ld.igds.inout.dto.InoutData;
|
import org.apache.ibatis.annotations.Param;
|
import java.util.List;
|
|
/**
|
* 出入库-扦样化验查询
|
* @author czt
|
* @date 2023-05-30 17:45
|
*/
|
public interface InoutCheckMapper {
|
|
/**
|
* 分页获取扦样数据
|
*
|
* @param page
|
* @param param
|
* @return
|
*/
|
List<InoutCheckData> pageSampleData(@Param("page") Page<InoutCheckData> page,
|
@Param("param") InoutCheckParam param);
|
|
|
/**
|
* 更新扦样数据
|
*
|
* @param data
|
* @return
|
*/
|
int updateSampleData(@Param("data") InoutData data);
|
}
|