141 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class FeesRecordReport
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private DateTime? startTime; 
 | |
|         private DateTime? endTime; 
 | |
|         private string feeType; 
 | |
|         private string chargType; 
 | |
|         private string pageType; 
 | |
|         private string pageNo; 
 | |
|         private int? execDepartmentId; 
 | |
|         private string execDepartmentName; 
 | |
|         private int? operatorId; 
 | |
|         private DateTime? operatorTime; 
 | |
|         private string remark; 
 | |
|         private string remark2; 
 | |
|         private string remark3; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? StartTime
 | |
| 		{
 | |
| 		    get{ return startTime; }
 | |
| 			set{ startTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? EndTime
 | |
| 		{
 | |
| 		    get{ return endTime; }
 | |
| 			set{ endTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string FeeType
 | |
| 		{
 | |
| 		    get{ return feeType; }
 | |
| 			set{ feeType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ChargType
 | |
| 		{
 | |
| 		    get{ return chargType; }
 | |
| 			set{ chargType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string PageType
 | |
| 		{
 | |
| 		    get{ return pageType; }
 | |
| 			set{ pageType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string PageNo
 | |
| 		{
 | |
| 		    get{ return pageNo; }
 | |
| 			set{ pageNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? ExecDepartmentId
 | |
| 		{
 | |
| 		    get{ return execDepartmentId; }
 | |
| 			set{ execDepartmentId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string ExecDepartmentName
 | |
| 		{
 | |
| 		    get{ return execDepartmentName; }
 | |
| 			set{ execDepartmentName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? OperatorId
 | |
| 		{
 | |
| 		    get{ return operatorId; }
 | |
| 			set{ operatorId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperatorTime
 | |
| 		{
 | |
| 		    get{ return operatorTime; }
 | |
| 			set{ operatorTime=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remark
 | |
| 		{
 | |
| 		    get{ return remark; }
 | |
| 			set{ remark=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remark2
 | |
| 		{
 | |
| 		    get{ return remark2; }
 | |
| 			set{ remark2=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Remark3
 | |
| 		{
 | |
| 		    get{ return remark3; }
 | |
| 			set{ remark3=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |