using Edu.Model.Entity.Log;
using Edu.Model.ViewModel.Log;
using Edu.Repository.Log;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Module.Log
{
///
/// 流程修改日志处理类
///
public class FlowLogModule
{
///
/// 流程修改日志仓储层对象
///
private readonly RB_Flow_LogRepository flow_LogRepository = new RB_Flow_LogRepository();
///
/// 获取流程修改日志列表
///
///
///
public List GetFlowLogListModule(RB_Flow_Log_ViewModel query)
{
return flow_LogRepository.GetFlowLogListRepository(query);
}
///
/// 获取流程修改日志分页列表
///
///
///
///
///
///
public List GetFlowLogPageListModule(int pageIndex, int pageSize, out long rowsCount, RB_Flow_Log_ViewModel query)
{
return flow_LogRepository.GetFlowLogPageListRepository(pageIndex, pageSize, out rowsCount, query);
}
///
/// 新增流程修改日志
///
///
///
public bool AddFlowLog(RB_Flow_Log model)
{
return flow_LogRepository.AddFlowLogRepository(model);
}
}
}