邱宇豪
2023-09-26 9538bdb6ee3714e030d41807e6ab46cd6258d590
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
package com.thhy.materials.modules.biz.embedment.service;
 
import com.thhy.general.common.BasicResult;
import com.thhy.materials.modules.biz.embedment.dto.EmbedmentGoodsDto;
import com.thhy.materials.modules.biz.embedment.entity.SysEmbedmentGoodsEntity;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-22 13:32:21
 * 预埋件库存接口
 */
public interface SysEmbedmentGoodsService {
 
    BasicResult insert(SysEmbedmentGoodsEntity sysEmbedmentGoodsEntity);
 
    BasicResult delete(String id);
 
    BasicResult update(SysEmbedmentGoodsEntity sysEmbedmentGoodsEntity);
 
    BasicResult findAll(EmbedmentGoodsDto embedmentGoodsDto);
 
    BasicResult findAllDetails(String id);
 
    BasicResult findEntity(String id);
 
    void export(EmbedmentGoodsDto embedmentGoodsDto, HttpServletResponse response);
 
    BasicResult alarmSet(EmbedmentGoodsDto embedmentGoodsDto);
 
    BasicResult inventoryCorrection(EmbedmentGoodsDto embedmentGoodsDto);
 
    BasicResult inventoryList(EmbedmentGoodsDto embedmentGoodsDto);
 
    BasicResult getType();
}