95 lines
1.8 KiB
C#
95 lines
1.8 KiB
C#
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;
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? OperationApplyId
|
|
{
|
|
get{ return operationApplyId; }
|
|
set{ operationApplyId=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? OperationId
|
|
{
|
|
get{ return operationId; }
|
|
set{ operationId=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; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperationName
|
|
{
|
|
get{ return operationName; }
|
|
set{ operationName=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LeftRemark
|
|
{
|
|
get{ return leftRemark; }
|
|
set{ leftRemark=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RightRemark
|
|
{
|
|
get{ return rightRemark; }
|
|
set{ rightRemark=value; }
|
|
}
|
|
}
|
|
}
|