张磊磊
2023-11-08 2b2d292c1a274aa95aab8c2ac20530e54a503923
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);
 
}