You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
869 B
C#
38 lines
869 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Op.Dtos;
|
|
|
|
namespace DS.WMS.Core.Op.Interface;
|
|
|
|
public interface ISeaExportService
|
|
{
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
DataResult<List<SeaExportRes>> GetListByPage(PageRequest request);
|
|
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult EditSeaExport(SeaExportReq model);
|
|
|
|
/// <summary>
|
|
/// 获取详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<SeaExportRes> GetSeaExportInfo(string id);
|
|
|
|
|
|
/// <summary>
|
|
/// 批量编辑单据
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult SeaExportBatchEdit(SeaExportBatchEditReq req);
|
|
|
|
} |