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();
|
}
|