You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
228 lines
6.3 KiB
228 lines
6.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using QMAPP.BLL;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.BLL.Dict;
|
|
using QMAPP.FJC.DAL.ProduceManage;
|
|
using QMAPP.FJC.Entity.ProduceManage;
|
|
using QMFrameWork.Data;
|
|
using QMFrameWork.Log;
|
|
using QMAPP.FJC.Entity;
|
|
using QMAPP.FJC.DAL.Operation;
|
|
using QMAPP.FJC.Entity.Operation;
|
|
|
|
namespace QMAPP.FJC.BLL.Operation
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:标记信息--佛山VW276
|
|
/// 作 者:张松男
|
|
/// 编写日期:2022年05月23日
|
|
/// </summary>
|
|
public class SignInfoBLL : BaseBLL
|
|
{
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>信息</returns>
|
|
public DataResult<SignInfo> Get(SignInfo model)
|
|
{
|
|
DataResult<SignInfo> result = new DataResult<SignInfo>();
|
|
try
|
|
{
|
|
result.Result = new SignInfoDAL().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 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataResult<DataPage> GetList(SignInfo condition, DataPage page)
|
|
{
|
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
DataPage dataPage = new SignInfoDAL().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;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <returns>全部集合</returns>
|
|
public List<SignInfo> GetAllList()
|
|
{
|
|
try
|
|
{
|
|
//获取信息列表
|
|
return new SignInfoDAL().GetALL();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "获取列表异常!"
|
|
});
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <returns>全部集合</returns>
|
|
public SignInfo GetAllListByLoc(string Loc)
|
|
{
|
|
try
|
|
{
|
|
//获取信息列表
|
|
return new SignInfoDAL().GetALLByLoc(Loc);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "获取列表异常!"
|
|
});
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 插入信息
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public DataResult<int> Insert(SignInfo info)
|
|
{
|
|
DataResult<int> result = new DataResult<int>();
|
|
try
|
|
{
|
|
//基本信息
|
|
info.PID = Guid.NewGuid().ToString();
|
|
info.CREATEUSER = this.LoginUser.UserID;
|
|
info.CREATEDATE = DateTime.Now.ToString();
|
|
SignInfoDAL cmdDAL = new SignInfoDAL();
|
|
result.Result = cmdDAL.Insert(info);
|
|
result.IsSuccess = true;
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 更新信息
|
|
/// <summary>
|
|
/// 更新信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public DataResult Update(SignInfo model)
|
|
{
|
|
DataResult result = new DataResult();
|
|
result.IsSuccess = true;
|
|
try
|
|
{
|
|
SignInfo info = new SignInfoDAL().Get(model);
|
|
|
|
//基本信息
|
|
int temp = new SignInfoDAL().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 删除
|
|
|
|
/// <summary>
|
|
/// 删除信息
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>删除个数</returns>
|
|
public int Delete(string model)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
count = new SignInfoDAL().Delete(model);
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|