| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using Model.ModelDto.LogDto; |
| | | using Model.ModelVm.LogVm; |
| | | using Utility; |
| | | using WMS.Entity.LogEntity; |
| | | using WMS.Entity.SysEntity; |
| | | |
| | |
| | | /// <param name="menuno">菜单号</param> |
| | | /// <param name="parentno">模块号</param> |
| | | /// <returns></returns> |
| | | List<OperationDto> GetSysOperationList(string menuname, string type, string msg, string menuno, string parentno); |
| | | Task<SqlSugarPagedList> GetSysOperationList(GetOperationVm model); |
| | | |
| | | /// <summary> |
| | | /// 新增系统操作日志 |
| | |
| | | /// <returns></returns> |
| | | Task<int> InsertOperation(string parentName, string menuName, string fkNo, string type, string msg, int createuser); |
| | | |
| | | Task<int> InsertOperation(OperationInputVm input); |
| | | /// <summary> |
| | | /// 获取类型菜单 |
| | | /// </summary> |
| | | /// <param name="dicName">字典名称</param> |
| | | /// <returns></returns> |
| | | List<SysDictionary> GetDicTypeList(string dicName); |
| | | Task<List<SysDictionary>> GetDicTypeList(string dicName); |
| | | } |
| | | } |