87 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class ProgramException
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string message; 
 | |
|         private string source; 
 | |
|         private string stackTrace; 
 | |
|         private string targetSite; 
 | |
|         private string iP; 
 | |
|         private int? operatorId; 
 | |
|         private DateTime? exceptionTime; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// ID
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 异常信息
 | |
|         /// </summary>
 | |
| 		public string Message
 | |
| 		{
 | |
| 		    get{ return message; }
 | |
| 			set{ message=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 异常对象
 | |
|         /// </summary>
 | |
| 		public string Source
 | |
| 		{
 | |
| 		    get{ return source; }
 | |
| 			set{ source=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 调用堆栈
 | |
|         /// </summary>
 | |
| 		public string StackTrace
 | |
| 		{
 | |
| 		    get{ return stackTrace; }
 | |
| 			set{ stackTrace=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 触发方法
 | |
|         /// </summary>
 | |
| 		public string TargetSite
 | |
| 		{
 | |
| 		    get{ return targetSite; }
 | |
| 			set{ targetSite=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 发生地IP
 | |
|         /// </summary>
 | |
| 		public string IP
 | |
| 		{
 | |
| 		    get{ return iP; }
 | |
| 			set{ iP=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 操作人
 | |
|         /// </summary>
 | |
| 		public int? OperatorId
 | |
| 		{
 | |
| 		    get{ return operatorId; }
 | |
| 			set{ operatorId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 错误时间
 | |
|         /// </summary>
 | |
| 		public DateTime? ExceptionTime
 | |
| 		{
 | |
| 		    get{ return exceptionTime; }
 | |
| 			set{ exceptionTime=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |