using System;
using System.Collections;
using System.Collections.Generic;
namespace AIMSModel
{
[Serializable]
public partial class ApplyOperationInfo
{
private int? id;
private int? operationApplyId;
private int? operationId;
private string operatorNo;
private string operatorName;
private DateTime? operateDate;
private string operationName;
private string leftRemark;
private string rightRemark;
///
///
///
public int? Id
{
get{ return id; }
set{ id=value; }
}
///
///
///
public int? OperationApplyId
{
get{ return operationApplyId; }
set{ operationApplyId=value; }
}
///
///
///
public int? OperationId
{
get{ return operationId; }
set{ operationId=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; }
}
///
///
///
public string OperationName
{
get{ return operationName; }
set{ operationName=value; }
}
///
///
///
public string LeftRemark
{
get{ return leftRemark; }
set{ leftRemark=value; }
}
///
///
///
public string RightRemark
{
get{ return rightRemark; }
set{ rightRemark=value; }
}
}
}