using System; using System.Collections.Generic; using QMAPP.BLL; using QMAPP.Entity; using QMFrameWork.Data; using QMFrameWork.Log; using QMAPP.FJC.Entity.Dianjian; using QMAPP.FJC.DAL.Dianjian; namespace QMAPP.FJC.BLL.Dianjian { /// /// 模块名称:注塑料筒信息 /// 作 者:张松男 /// 编写日期:2021年07月13日 /// public class InOutPutInventoryLogBLL : BaseBLL { #region 获取信息 /// /// 获取信息 /// /// 条件 /// 信息 public DataResult Get(InOutPut_InventoryLog model) { DataResult result = new DataResult(); try { result.Result = new InOutPut_InventoryLogDAL().Get(model); result.IsSuccess = true; } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "获取异常!" }); result.IsSuccess = false; result.Ex = ex; result.Msg = "获取异常"; } return result; } #endregion #region 获取列表 /// /// 获取列表 /// /// 条件 /// 数据页 /// 数据页 public DataResult GetList(InOutPut_InventoryLog condition, DataPage page) { DataResult result = new DataResult(); try { DataPage dataPage = new InOutPut_InventoryLogDAL().GetList(condition, page); result.IsSuccess = true; result.Result = dataPage; } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "获取列表异常!" }); result.IsSuccess = false; result.Ex = ex; result.Msg = "获取列表异常!"; } return result; } /// /// 获取列表 /// /// 条件 /// 全部集合 public List GetAllList() { try { //获取信息列表 return new InOutPut_InventoryLogDAL().GetALL(); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "获取列表异常!" }); throw ex; } } #endregion #region 插入信息 /// /// 插入信息(单表) /// /// 信息 /// 插入行数 public DataResult Insert(InOutPut_InventoryLog info) { DataResult result = new DataResult(); try { //基本信息 info.PID = Guid.NewGuid().ToString(); InOutPut_InventoryLogDAL cmdDAL = new InOutPut_InventoryLogDAL(); result.Result = cmdDAL.Insert(info); result.IsSuccess = true; return result; } catch (Exception ex) { throw ex; } } #endregion #region 更新信息 /// /// 更新信息 /// /// /// 更新行数 public DataResult Update(InOutPut_InventoryLog model) { DataResult result = new DataResult(); result.IsSuccess = true; try { InOutPut_InventoryLog info = new InOutPut_InventoryLogDAL().Get(model); //基本信息 info.Type = model.Type; int temp = new InOutPut_InventoryLogDAL().Update(info); if (temp == 0) { result.IsSuccess = false; result.Msg = "更新失败!"; return result; } } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "更新异常!" }); result.IsSuccess = false; result.Ex = ex; result.Msg = "更新异常"; } return result; } #endregion #region 删除 /// /// 删除信息 /// /// 信息 /// 删除个数 public int Delete(string model) { int count = 0; try { count = new InOutPut_InventoryLogDAL().Delete(model); return count; } catch (Exception ex) { throw ex; } } #endregion } }