You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
500 B
18 lines
500 B
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad;
|
|
|
|
/// <summary>
|
|
/// QAD供应商(Vendor)
|
|
/// </summary>
|
|
public interface ISupplierAppService : IApplicationService
|
|
{
|
|
/// <summary>
|
|
/// 取QAD供应商(Vendor)
|
|
/// </summary>
|
|
/// <param name="input">QAD供应商(Vendor)</param>
|
|
/// <returns></returns>
|
|
Task<ActionResult<VendDto>> AddAsync(VendInput input);
|
|
}
|
|
|