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<Dt_trackloginfo>
|
{
|
public IRepository<Dt_trackloginfo> Repository { get; }
|
|
/// <summary>
|
/// 记录日志
|
/// </summary>
|
/// <typeparam name="TEntity"></typeparam>
|
/// <param name="entity">参数</param>
|
/// <param name="content">返回结果</param>
|
/// <param name="logName">日志名称</param>
|
/// <param name="logCode">日志代码</param>
|
/// <param name="description">操作说明</param>
|
/// <returns></returns>
|
public WebResponseContent AddTrackLog<T>(T entity, WebResponseContent content, string logName, string logCode, string description);
|
}
|
|
|
}
|