bklLiudl
2024-08-23 62b3bf8205277b9bdceaa83f0d7e5d73312e1780
Wms/WMS.IBLL/ILogServer/IOperationCRServer.cs
@@ -1,7 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Model.ModelDto.LogDto;
using Model.ModelVm.LogVm;
using SqlSugar;
namespace WMS.IBLL.ILogServer
{
@@ -19,8 +22,8 @@
        /// <param name="limit"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        List<OperationDto> GetLogOperationCrList(string menuName, string type, string msg, string startTime,
            string endTime, int page, int limit, out int count);
        Task<List<OperationDto>> GetLogOperationCrList(string menuName, string type, string msg, string startTime,
            string endTime, int page, int limit, RefAsync<int> count);
        /// <summary>
        /// 添加库内(盘库、移库)操作日志
        /// </summary>
@@ -32,5 +35,10 @@
        /// <param name="userId">操作人</param>
        /// <returns></returns>
        bool AddLogOperationCr(string parentNo, string menuName, string fkNo, string type, string msg, int userId);
        /// <summary>
        /// 新增系统操作日志
        /// </summary>
        /// <returns></returns>
        Task<int> AddLogOperationCr(OperationInputVm input);
    }
}