yangle
2023-03-03 c2a9a460e38c7c196fe98a94e29e6330eac3626f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
        }
    }
}