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.
16 lines
396 B
C#
16 lines
396 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Sys.Dtos;
|
|
|
|
namespace DS.WMS.Core.Sys.Interface
|
|
{
|
|
public interface ICodeInvoiceService
|
|
{
|
|
/// <summary>
|
|
/// 获取下拉数据
|
|
/// </summary>
|
|
/// <param name="text">模糊搜索字符</param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<CodeInvoiceSelect>>> GetSelectListAsync(string text);
|
|
}
|
|
}
|