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.
93 lines
2.3 KiB
93 lines
2.3 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Collections;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMFrameWork.Common.Encrypt;
|
||
|
using QMAPP.Entity.Sys;
|
||
|
using QMAPP.DAL.Sys;
|
||
|
using QMAPP.BLL.Dict;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.BLL.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 系统操作LOG记录
|
||
|
/// 创建者:王云峰
|
||
|
/// 创建日期:2014.7.3
|
||
|
/// </summary>
|
||
|
public class SystemOperateLogBLL : BaseBLL
|
||
|
{
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="log"></param>
|
||
|
/// <param name="page"></param>
|
||
|
/// <returns></returns>
|
||
|
public DataPage GetList(SystemOperateLog log, DataPage page)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
page = new SystemOperateLogDAL().GetList(log, page);
|
||
|
List<SystemOperateLog> retList = (List<SystemOperateLog>)page.Result;
|
||
|
|
||
|
return page;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region 插入数据
|
||
|
/// <summary>
|
||
|
/// 插入数据
|
||
|
/// </summary>
|
||
|
/// <param name="log"></param>
|
||
|
/// <returns></returns>
|
||
|
public int Insert(SystemOperateLog log)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
log.OperateID = Guid.NewGuid().ToString();
|
||
|
//操作用户
|
||
|
log.UserID = this.LoginUser.LoginUserID;
|
||
|
//操作时间
|
||
|
log.OperateTime = DateTime.Now.ToString();
|
||
|
return new SystemOperateLogDAL().Insert(log);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
|
||
|
#region 获取导出的数据
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取导出的数据
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <returns>数据</returns>
|
||
|
public DataTable GetExportData(SystemOperateLog log)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return new SystemOperateLogDAL().GetExportData(log);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|