邱宇豪
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
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.SysEmbedmentGoodsEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-22 11:17:31
 * 预埋件库存mapper
 */
@Mapper
public interface SysEmbedmentGoodsMapper {
 
    void insert(SysEmbedmentGoodsEntity sysEmbedmentGoodsEntity);
 
    void delete(String id);
 
    void update(SysEmbedmentGoodsEntity sysEmbedmentGoodsEntity);
 
    List<SysEmbedmentGoodsEntity> findAll(EmbedmentGoodsDto embedmentGoodsDto);
 
    SysEmbedmentGoodsEntity findEntity(String id);
 
    String embedmentNameAndType(@Param("embedmentGoodsName") String embedmentGoodsName, @Param("embedmentType") String embedmentType);
 
    void alarmSet(EmbedmentGoodsDto embedmentGoodsDto);
 
}