59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic; 
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class NoticeTemplate
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string contents; 
 | |
|         private string hCode; 
 | |
|         private int? operatorId; 
 | |
|         private DateTime? operatorTime; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 编号,自增
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 内容
 | |
|         /// </summary>
 | |
| 		public string Contents
 | |
| 		{
 | |
| 		    get{ return contents; }
 | |
| 			set{ contents=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 助记码
 | |
|         /// </summary>
 | |
| 		public string HCode
 | |
| 		{
 | |
| 		    get{ return hCode; }
 | |
| 			set{ hCode=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 操作员编号
 | |
|         /// </summary>
 | |
| 		public int? OperatorId
 | |
| 		{
 | |
| 		    get{ return operatorId; }
 | |
| 			set{ operatorId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 操作时间
 | |
|         /// </summary>
 | |
| 		public DateTime? OperatorTime
 | |
| 		{
 | |
| 		    get{ return operatorTime; }
 | |
| 			set{ operatorTime=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |