package com.thhy.materials.modules.biz.pipeoutplan.service;
|
|
import com.thhy.general.common.BasicResult;
|
import com.thhy.materials.modules.biz.pipeoutplan.entity.PipeOutPlanEntity;
|
|
import java.util.Map;
|
|
/**
|
* @Author QiuYuHao
|
* @CreateDate 2023-11-03 9:42:10
|
* 发运计划逻辑接口
|
*/
|
public interface PipeOutPlanService {
|
|
BasicResult insert(PipeOutPlanEntity pipeOutPlanEntity);
|
|
BasicResult delete(String pipeNeedId);
|
|
BasicResult update(PipeOutPlanEntity pipeOutPlanEntity);
|
|
BasicResult selectInfo(String pipeNeedId);
|
|
BasicResult findAll(Map<String,Object> map);
|
}
|