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); } }