邱宇豪
2023-09-22 07a07e9072946498a7d37c7345f83f9021f5deeb
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
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);
 
}