12 lines
		
	
	
		
			308 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			308 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |