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.
16 lines
452 B
16 lines
452 B
2 years ago
|
using System.Threading.Tasks;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Volo.Abp.Application.Services;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad;
|
||
|
|
||
|
public interface IPrhHistAppService : IApplicationService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// QAD收货单(prh_hist)
|
||
|
/// </summary>
|
||
|
/// <param name="input">QAD收货单(prh_hist)</param>
|
||
|
/// <returns></returns>
|
||
|
Task<ActionResult<PrhHistDto>> AddAsync(PrhHistInput input);
|
||
|
}
|