yanjinhui
14 小时以前 39531cf0ea52494fe56b8734afa552db32b7a164
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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);
    }
 
     
}