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

12 lines
308 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +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);
}
}