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