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