package com.thhy.materials.modules.biz.embedment.mapper;
|
|
import com.thhy.materials.modules.biz.embedment.dto.EmbedmentGoodsDto;
|
import com.thhy.materials.modules.biz.embedment.entity.SysEmbedmentCorrectionEntity;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-09-22 14:47:57
|
* 预埋件校正记录mapper
|
*/
|
@Mapper
|
public interface SysEmbedmentCorrectionMapper {
|
|
void insert(SysEmbedmentCorrectionEntity sysEmbedmentCorrectionEntity);
|
|
/**
|
* 校正记录列表查询
|
* @param embedmentGoodsDto
|
* @return
|
*/
|
List<SysEmbedmentCorrectionEntity> inventoryList(EmbedmentGoodsDto embedmentGoodsDto);
|
|
}
|