69 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class Notice
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string contents; 
 | |
|         private int? sendState; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <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 int? SendState
 | |
| 		{
 | |
| 		    get{ return sendState; }
 | |
| 			set{ sendState=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorName
 | |
| 		{
 | |
| 		    get{ return operatorName; }
 | |
| 			set{ operatorName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperateDate
 | |
| 		{
 | |
| 		    get{ return operateDate; }
 | |
| 			set{ operateDate=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |