using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class OperationPosition { private int? id; private string name; private string helpCode; private string explain; private int? positionOrder; private int? isValid; private string operatorNo; private string operatorName; private DateTime? operateDate; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public string Name { get{ return name; } set{ name=value; } } /// /// /// public string HelpCode { get{ return helpCode; } set{ helpCode=value; } } /// /// /// public string Explain { get{ return explain; } set{ explain=value; } } /// /// /// public int? PositionOrder { get{ return positionOrder; } set{ positionOrder=value; } } /// /// /// public int? IsValid { get{ return isValid; } set{ isValid=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; } } } }