¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.tms.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBound; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBoundDetail; |
| | | import org.jeecg.modules.tms.entity.dto.LossBoundFlowDto; |
| | | import org.jeecg.modules.tms.entity.dto.StocktakingBoundFlowDto; |
| | | import org.jeecg.modules.tms.entity.vo.StocktakingPoundVo; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: çç¹å表 |
| | | * @Author: houjie |
| | | * @Date: 2025-05-16 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IToolsStocktakingBoundService extends IService<ToolsStocktakingBound> { |
| | | |
| | | /** |
| | | * æ·»å ä¸å¯¹å¤ |
| | | * |
| | | * @param toolsStocktakingBound |
| | | * @param toolsStocktakingBoundDetailList |
| | | */ |
| | | public void saveMain(ToolsStocktakingBound toolsStocktakingBound, List<ToolsStocktakingBoundDetail> toolsStocktakingBoundDetailList); |
| | | |
| | | /** |
| | | * ä¿®æ¹ä¸å¯¹å¤ |
| | | * |
| | | * @param toolsStocktakingBound |
| | | * @param toolsStocktakingBoundDetailList |
| | | */ |
| | | public void updateMain(ToolsStocktakingBound toolsStocktakingBound, List<ToolsStocktakingBoundDetail> toolsStocktakingBoundDetailList); |
| | | |
| | | /** |
| | | * å é¤ä¸å¯¹å¤ |
| | | * |
| | | * @param id |
| | | */ |
| | | public void delMain(String id); |
| | | |
| | | /** |
| | | * æ¹éå é¤ä¸å¯¹å¤ |
| | | * |
| | | * @param idList |
| | | */ |
| | | public void delBatchMain(Collection<? extends Serializable> idList); |
| | | |
| | | /** |
| | | * æäº¤çç¹å |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean submintOrder(String id); |
| | | |
| | | /** |
| | | * å®¡æ¹æµç¨ |
| | | * @param stocktakingBoundFlowDto |
| | | */ |
| | | void approvalProcess(StocktakingBoundFlowDto stocktakingBoundFlowDto); |
| | | |
| | | } |