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;
///
///
///
public int? Id
{
get{ return id; }
set{ id=value; }
}
///
///
///
public DateTime? StartTime
{
get{ return startTime; }
set{ startTime=value; }
}
///
///
///
public DateTime? EndTime
{
get{ return endTime; }
set{ endTime=value; }
}
///
///
///
public string FeeType
{
get{ return feeType; }
set{ feeType=value; }
}
///
///
///
public string ChargType
{
get{ return chargType; }
set{ chargType=value; }
}
///
///
///
public string PageType
{
get{ return pageType; }
set{ pageType=value; }
}
///
///
///
public string PageNo
{
get{ return pageNo; }
set{ pageNo=value; }
}
///
///
///
public int? ExecDepartmentId
{
get{ return execDepartmentId; }
set{ execDepartmentId=value; }
}
///
///
///
public string ExecDepartmentName
{
get{ return execDepartmentName; }
set{ execDepartmentName=value; }
}
///
///
///
public int? OperatorId
{
get{ return operatorId; }
set{ operatorId=value; }
}
///
///
///
public DateTime? OperatorTime
{
get{ return operatorTime; }
set{ operatorTime=value; }
}
///
///
///
public string Remark
{
get{ return remark; }
set{ remark=value; }
}
///
///
///
public string Remark2
{
get{ return remark2; }
set{ remark2=value; }
}
///
///
///
public string Remark3
{
get{ return remark3; }
set{ remark3=value; }
}
}
}