13 lines
249 B
C#
13 lines
249 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 操作审计日志 服务实现
|
|
/// </summary>
|
|
public class AuditService : IAuditService
|
|
{
|
|
// TODO: 实现 操作审计日志 相关方法
|
|
}
|
|
}
|