using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
	[Serializable]
    public partial class ApplyOperationPosition
	{
        private int? id; 
        private int? operationApplyId; 
        private int? operationPositionId; 
        private string operatorNo; 
        private string operatorName; 
        private DateTime? operateDate; 
	
	
	    /// 
        /// 
        /// 
		public int? Id
		{
		    get{ return id; }
			set{ id=value; }
		}
	    /// 
        /// 
        /// 
		public int? OperationApplyId
		{
		    get{ return operationApplyId; }
			set{ operationApplyId=value; }
		}
	    /// 
        /// 
        /// 
		public int? OperationPositionId
		{
		    get{ return operationPositionId; }
			set{ operationPositionId=value; }
		}
	    /// 
        /// 
        /// 
		public string OperatorNo
		{
		    get{ return operatorNo; }
			set{ operatorNo=value; }
		}
	    /// 
        /// 
        /// 
		public string OperatorName
		{
		    get{ return operatorName; }
			set{ operatorName=value; }
		}
	    /// 
        /// 
        /// 
		public DateTime? OperateDate
		{
		    get{ return operateDate; }
			set{ operateDate=value; }
		}
	}
}