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.
74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.Module.DjyRulesEngine;
|
|
using DS.WMS.Core.Op.Dtos;
|
|
using DS.WMS.Core.Op.Dtos.VGM;
|
|
using DS.WMS.Core.Op.EDI;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Op.Interface;
|
|
|
|
public interface ISeaExportTestService
|
|
{
|
|
/// <summary>
|
|
/// 导出海运出口主表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task SeaExportExport();
|
|
|
|
/// <summary>
|
|
/// 海运出口品名信息导出
|
|
/// </summary>
|
|
public Task SeaExportExportCtnGoods();
|
|
|
|
/// <summary>
|
|
/// 海运出口订单货物信息导出
|
|
/// </summary>
|
|
public Task SeaExportExportMainGood();
|
|
|
|
/// <summary>
|
|
/// 海运出口订单集装箱信息导出
|
|
/// </summary>
|
|
public Task SeaExportExportMainCtn();
|
|
|
|
/// <summary>
|
|
/// 海运出口订单订舱信息导出
|
|
/// </summary>
|
|
public Task SeaExportExportMainBook();
|
|
/// <summary>
|
|
/// 海运出口订单费用信息导出
|
|
/// </summary>
|
|
public Task SeaExportExportMainFee();
|
|
|
|
/// <summary>
|
|
/// 导出海运出口分单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task SeaExportExportPart();
|
|
|
|
///// <summary>
|
|
///// 海运出口品名信息导出分单
|
|
///// </summary>
|
|
//public Task SeaExportExportCtnGoodsPart();
|
|
|
|
///// <summary>
|
|
///// 海运出口订单货物信息导出分单
|
|
///// </summary>
|
|
//public Task SeaExportExportPartGoodPart();
|
|
|
|
/// <summary>
|
|
/// 海运出口订单集装箱信息导出分单
|
|
/// </summary>
|
|
public Task SeaExportExportPartCtn();
|
|
|
|
///// <summary>
|
|
///// 海运出口订单订舱信息导出分单
|
|
///// </summary>
|
|
//public Task SeaExportExportPartBook();
|
|
/// <summary>
|
|
/// 海运出口订单费用信息导出分单
|
|
/// </summary>
|
|
public Task SeaExportExportPartFee();
|
|
} |