using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Model.ModelDto.LogDto;
using WMS.Entity.LogEntity;
using WMS.Entity.SysEntity;
namespace WMS.IBLL.ILogServer
{
public interface IOperationSysServer
{
/////
///// 查询操作日志
/////
///// 菜单名称
///// 类型
///// 内容
///// 开始日期
///// 结束日期
/////
/////
/////
/////
//List GetOperationSysList(string menuName,string type,string msg,string startTime,string endTime,int page,int limit,out int count);
///
/// 添加操作日志
///
/// 模块号
/// 菜单号
/// 菜单名称
/// 数据编号
/// 类型 添加 修改 删除 停用 启用
/// 操作
///
///
Task AddOperationSys(string parentNo,string menuNo,string menuName,string fkNo,string type,string msg,int userId);
///
/// 获取系统操作日志数据列表
///
/// 菜单名称
/// 操作类型
/// 操作内容
/// 菜单号
/// 模块号
///
List GetSysOperationList(string menuname, string type, string msg, string menuno, string parentno);
///
/// 新增系统操作日志
///
/// 模块名称
/// 菜单名称
/// 数据编号
/// 操作类型
/// 操作内容
/// 创建人
///
Task InsertOperation(string parentName, string menuName, string fkNo, string type, string msg, int createuser);
///
/// 获取类型菜单
///
/// 字典名称
///
List GetDicTypeList(string dicName);
}
}