22 lines
		
	
	
		
			531 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			531 B
		
	
	
	
		
			C#
		
	
	
	
using SqlSugar;
 | 
						|
 | 
						|
namespace LY.App.Model
 | 
						|
{
 | 
						|
    [SugarTable("ly_logInfo")]
 | 
						|
    public class LogEntity : BaseEntity
 | 
						|
    {
 | 
						|
        public string Parameters { get; set; }
 | 
						|
        public string Message { get; set; }
 | 
						|
        public string StackTrace { get; set; }
 | 
						|
        public string url { get; set; }
 | 
						|
    }
 | 
						|
    public class AddLog
 | 
						|
    {
 | 
						|
        public string Message { get; set; }
 | 
						|
        public string Parameters { get; set; }
 | 
						|
        
 | 
						|
        public string StackTrace { get; set; }
 | 
						|
        public string url { get; set; }
 | 
						|
    }
 | 
						|
}
 |