You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aucma.Scada/HighWayIot.Repository/service/Impl/RecordInStoreServiceImpl.cs

29 lines
730 B
C#

using Aucma.Scada.Model.domain;
using HighWayIot.Log4net;
using System;
namespace HighWayIot.Repository.service.Impl
{
public class RecordInStoreServiceImpl : IRecordInStoreService
{
Repository<RecordInstore> _repository => new Repository<RecordInstore>("mes");
private LogHelper logHelper = LogHelper.Instance;
public bool InsertRecordInStore(RecordInstore recordInstore)
{
bool result = false;
try
{
result = _repository.Insert(recordInstore);
}
catch (Exception ex)
{
logHelper.Error("入库记录添加异常", ex);
}
return result;
}
}
}