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

32 lines
819 B
C#

using Aucma.Scada.Model.domain;
using HighWayIot.Log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}