using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using System.Data;
|
using SQLHelper;
|
|
namespace BLL
|
{
|
class ClsXt_SystemLogHlp : IDisposable
|
{
|
private string mvarReportTitle;
|
|
public string MvarReportTitle
|
{
|
get { return mvarReportTitle; }
|
set { mvarReportTitle = value; }
|
}
|
public string WherePart;
|
public string ClsName;
|
//
|
ClsCN oCN = new ClsCN();
|
public long ID;
|
public DateTime GeginDate;
|
public string Userid;
|
public string WorkstationName;
|
public string WorkList;
|
public string SystemName;
|
public string NetuserName;
|
public string State;
|
//
|
|
//
|
public ClsXt_SystemLogHlp()
|
{
|
mvarReportTitle = "系统日志";
|
ClsName = "系统日志";
|
}
|
//
|
public void Dispose()
|
{
|
GC.SuppressFinalize(this);
|
}
|
//
|
|
//返回项目信息
|
public bool GetInfoByID(long sItemID)
|
{
|
return true;
|
}
|
}
|
}
|