yxj
2023-04-04 01024c743a5c20700bf8035ee48c6cdc149ded96
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using SQLHelper;
 
namespace BLL
{
    class ClsXt_SystemLog
    {
        private string _mvarItemKey;
 
        public string MvarItemKey
        {
            get { return _mvarItemKey; }
            set { _mvarItemKey = value; }
        }
        private string _mvarReportTitle;
 
        public string MvarReportTitle
        {
            get { return _mvarReportTitle; }
            set { _mvarReportTitle = value; }
        }
        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_SystemLog()
        {
            MvarItemKey = "Xt_SystemLog";
            MvarReportTitle = "系统日志";
        }
        //删除
        public bool DeleteByID(long sid)
        {
            try
            {
                oCN.RunProc("Delete from h_v_Xt_SystemLogList where hid='" + sid + "'");
                return true;
            }
            catch (Exception e)
            {
                return false;
            }
        }
 
        #region 固定代码 
 
        //是否存在重复代码
        public bool HavSameNumber(long sItemID,string  sNumber)
        {
            DataSet DS ;
            try
            {
                DS = oCN.RunProcReturn("Select HItemID from Xt_SystemLog Where HItemID<>'" + sItemID + "' and HNumber='" + sNumber + "'", "Xt_SystemLog");
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return true;
                }
            }
            catch (Exception e)
            {
                return false;
            }
        }
        
        #endregion
    }
}