using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.LogDto;
namespace WMS.IBLL.ILogServer
{
public interface IOperationSOServer
{
///
/// 分页查询操作日志
///
/// 菜单名称
/// 操作类型
/// 操作内容
/// 开始时间
/// 结束时间
///
///
///
///
List GetLogOperationSoList(string menuName, string type, string msg, string startTime,
string endTime, int page, int limit, out int count);
///
/// 添加出库操作日志
///
/// 模块名称
/// 菜单名称
/// 数据编号
/// 类型
/// 操作内容
/// 操作人
///
bool AddLogOperationSo(string parentNo,string menuName,string fkNo,string type,string msg,int userId);
}
}