using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_IBasicInfoService { public interface ITrackloginfoService : IService { public IRepository Repository { get; } /// /// 记录日志 /// /// /// 参数 /// 返回结果 /// 日志名称 /// 日志代码 /// 操作说明 /// public WebResponseContent AddTrackLog(T entity, WebResponseContent content, string logName, string logCode, string description); } }