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.
23 lines
571 B
C#
23 lines
571 B
C#
3 months ago
|
using DS.Module.Core;
|
||
|
using DS.Module.Core.Extensions;
|
||
|
using DS.WMS.Core.Code.Dtos;
|
||
|
using DS.WMS.Core.Fee.Dtos;
|
||
|
using DS.WMS.Core.Info.Dtos;
|
||
|
using DS.WMS.Core.Op.Dtos;
|
||
|
using DS.WMS.Core.Sys.Dtos;
|
||
|
using DS.WMS.Core.Sys.Entity;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.WMS.Core.Sys.Interface;
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public interface IServerCommonService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取船公司下拉列表-管理端
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public Task<DataResult<List<CodeCarrierRes>>> GetCodeCarrierSelectList(string queryKey = "");
|
||
|
|
||
|
}
|