package com.ruoyi.buss.service;
|
|
import com.ruoyi.buss.domain.DsMatDispatch2;
|
|
import java.util.List;
|
|
public interface IDsMatDispatch2Service {
|
|
/**
|
* 查询物资跨港调用信息
|
* @param dsMatDispatch2
|
* @return
|
*/
|
public List<DsMatDispatch2> selectDsMatDispatchList(DsMatDispatch2 dsMatDispatch2);
|
|
/**
|
* 查询需要审批的物资跨港调用信息
|
* @return
|
*/
|
public List<DsMatDispatch2> selectDsMatDispatchForApply();
|
|
/**
|
* 获取部门编码和状态获取任务列表
|
* @param deptId
|
* @return
|
*/
|
public List<DsMatDispatch2> selectDsMatDispatchByDeptId(Long deptId, String status);
|
|
|
/**
|
* 查询物资跨港调用列表
|
* @param id
|
* @return
|
*/
|
public DsMatDispatch2 selectDsMatDispatchById(Long id);
|
|
/**
|
* 新增物资跨港调用
|
* @param dsMatDispatch2
|
* @return
|
*/
|
public int insertDsMatDispatch(DsMatDispatch2 dsMatDispatch2);
|
|
/**
|
* 修改物资跨港调用
|
* @param dsMatDispatch2
|
* @return
|
*/
|
public int updateDsMatDispatch(DsMatDispatch2 dsMatDispatch2);
|
|
/**
|
* 删除物资跨港调用
|
* @param id
|
* @return
|
*/
|
public int deleteDsMatDispatchById(Long id);
|
|
/**
|
* 批量删除物资跨港调用
|
* @param ids
|
* @return
|
*/
|
public int deleteDsMatDispatchByIds(String ids);
|
}
|