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 ZxRecipeParaService { private static readonly Lazy lazy = new Lazy(() => new ZxRecipeParaService()); public static ZxRecipeParaService Instance { get { return lazy.Value; } } private LogHelper log = LogHelper.Instance; Repository _repository => new Repository("sqlserver"); /// /// 查询配方字段信息 /// /// public List GetRecipeParaInfos() { try { List entity = _repository.GetList(); return entity; } catch (Exception ex) { log.Error("用户信息获取异常", ex); return null; } } /// /// 查询配方字段信息 /// /// public List GetRecipeParaInfoByRecipeCode() { try { List entity = _repository.GetList(x => x.IsDeleted == false); return entity; } catch (Exception ex) { log.Error("用户信息获取异常", ex); return null; } } /// /// 根据配方号查询配方字段信息 /// /// 配方编号 /// public List GetRecipeParaInfoByRecipeCode(string recipeCode) { try { List entity = _repository.GetList(x => x.IsDeleted == false && x.RecipeCode == recipeCode); return entity; } catch (Exception ex) { log.Error("用户信息获取异常", ex); return null; } } /// /// 修改配方字段信息 /// /// /// public bool UpdateRecipeParaInfo(ZxRecipeParaEntity entity) { try { return _repository.Update(entity); } catch(Exception ex) { log.Error("配方字段信息修改异常", ex); return false; } } /// /// 添加配方字段信息 /// /// /// public bool InsertRecipeParaInfo(ZxRecipeParaEntity entity) { try { return _repository.Insert(entity); } catch (Exception ex) { log.Error("配方字段信息修改异常", ex); return false; } } /// /// ID删除配方字段信息 /// /// /// public bool DeleteRecipeParaInfoById(int id) { try { return _repository.DeleteById(id); } catch (Exception ex) { log.Error("配方字段信息删除异常", ex); return false; } } } }