邱宇豪
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.thhy.materials.modules.biz.embedment.mapper;
 
import com.thhy.materials.modules.biz.embedment.dto.EmbedmentRecordDto;
import com.thhy.materials.modules.biz.embedment.entity.SysEmbedmentRecordEntity;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-22 16:02:20
 * 预埋件出入库mapper
 */
@Mapper
public interface SysEmbedmentRecordMapper {
 
    void insert(SysEmbedmentRecordEntity sysEmbedmentRecordEntity);
 
    void embedmentRecordDel(String id);
 
    void update(SysEmbedmentRecordEntity sysEmbedmentRecordEntity);
 
    /**
     * 入库列表
     * @param embedmentRecordDto
     * @return
     */
    List<SysEmbedmentRecordEntity> embedmentRecordList(EmbedmentRecordDto embedmentRecordDto);
 
    /**
     * 出库列表
     * @param embedmentRecordDto
     * @return
     */
    List<SysEmbedmentRecordEntity> embedmentRecordOutList(EmbedmentRecordDto embedmentRecordDto);
 
    /**
     * 查询单条
     * @param id
     * @return
     */
    SysEmbedmentRecordEntity embedmentRecordInfo(String id);
 
}