using System.Threading.Tasks; namespace Win_in.Sfs.Shared.Application.Contracts; public interface ISfsGetByNumberAppService { /// /// 根据单号获取单据 /// /// 单号 /// Task GetByNumberAsync(string number); }