mh_jy_safe/APT.BaseData.Services/Services/System/ILog.cs

12 lines
308 B
C#
Raw Permalink Normal View History

2025-08-25 09:56:57 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using APT.Infrastructure.Api;
namespace APT.BaseData.Services.Sys
{
public interface IMesLog
{
void LogInfo(string api = null, string message = null, string desc = null, Guid? orgId = null, string jobCode = null);
}
}