using Tnb.ProductionMgr.Entities.Dto;
namespace Tnb.ProductionMgr.Interfaces
{
///
/// 物料签收服务接口
///
public interface IPrdMaterialReceiptService
{
// ///
// /// 根据铁片二维码获取信息
// ///
// ///
// ///
// public Task GetInfoByQrCode(string qrCode);
///
/// 保存数据
///
///
///
public Task SaveData(MaterialReceiptInput input);
}
}