using DS.Module.Core;
using DS.Module.Core.Data;
using DS.WMS.Core.Map.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Map.Interface
{
public interface IMappingCtnService
{
///
/// 列表
///
///
///
DataResult> GetListByPage(PageRequest request);
///
/// 编辑
///
///
///
DataResult EditMappingCtn(MappingCtnReq req);
///
/// 获取详情
///
///
///
DataResult GetMappingCtnInfo(string id);
///
/// 删除
///
///
///
public DataResult DelMappingCtn(IdModel req);
///
/// 批量删除
///
///
///
public DataResult BatchDelMappingCtn(IdModel req);
///
/// 检索集装箱映射
///
/// 船公司ID
/// 模块代码
/// 箱型代码
///
Task> QueryMappingCtn(long carrierId, string module, string code);
}
}