1
0
Fork 0
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.

93 lines
2.5 KiB
C#

using HighWayIot.Log4net;
using HighWayIot.Repository.domain;
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.service
{
public class ZxMaterialService
{
private static readonly Lazy<ZxMaterialService> lazy = new Lazy<ZxMaterialService>(() => new ZxMaterialService());
public static ZxMaterialService Instance
{
get
{
return lazy.Value;
}
}
private LogHelper log = LogHelper.Instance;
Repository<ZxMaterialEntity> _repository => new Repository<ZxMaterialEntity>("sqlserver");
/// <summary>
/// 查询所有物料信息
/// </summary>
/// <returns></returns>
public List<ZxMaterialEntity> GetMaterialInfos()
{
try
{
List<ZxMaterialEntity> deviceInfo = _repository.GetList(x => x.IsDeleted == false);
return deviceInfo;
}
catch (Exception ex)
{
log.Error("物料信息获取异常", ex);
return null;
}
}
/// <summary>
/// 修改物料信息
/// </summary>
/// <param name="sysUserEntity"></param>
/// <returns></returns>
public bool UpdateMaterialInfo(ZxMaterialEntity sysUserEntity)
{
try
{
return _repository.Update(sysUserEntity);
}
catch (Exception ex)
{
log.Error("物料信息修改异常", ex);
return false;
}
}
public bool InsertMaterialInfo(ZxMaterialEntity sysUserEntity)
{
try
{
return _repository.Insert(sysUserEntity);
}
catch (Exception ex)
{
log.Error("物料信息添加异常", ex);
return false;
}
}
public bool DeleteMaterialInfoByMaterialCode(string materialCode)
{
try
{
ZxMaterialEntity e = _repository.GetById(materialCode);
e.IsDeleted = true;
return _repository.Update(e);
}
catch (Exception ex)
{
log.Error("物料信息删除异常", ex);
return false;
}
}
}
}