物料签收
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Tnb.ProductionMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.ProductionMgr.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料签收服务接口
|
||||
/// </summary>
|
||||
public interface IPrdMaterialReceiptService
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据铁片二维码获取信息
|
||||
/// </summary>
|
||||
/// <param name="qrCode"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetInfoByQrCode(string qrCode);
|
||||
|
||||
public Task<dynamic> SaveData(MaterialReceiptInput input);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user