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
542 B
18 lines
542 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客户物料(Customer part)
|
|
/// </summary>
|
|
public interface ICustomerPartAppService : IApplicationService
|
|
{
|
|
/// <summary>
|
|
/// 取QAD客户物料(Customer part)
|
|
/// </summary>
|
|
/// <param name="input">QAD客户物料(Customer part)</param>
|
|
/// <returns></returns>
|
|
Task<ActionResult<CustPartDto>> AddAsync(CustPartInput input);
|
|
}
|
|
|