沈泽
2021-08-20 d111e4321dcc4baa63f63597694f80d94e67ca11
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using SQLHelper;
 
namespace BLL
{
    class ClsXt_SystemParameter
    {
        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 ClsXt_SystemParameter_Model oModel = new ClsXt_SystemParameter_Model();
        //原代码 用于 替换子项目
        public string  HOldNumber;
        //新增
        public bool AddNew()
        {
            try
            {
                oCN.BeginTran();
                oCN.RunProc("Insert into Xt_SystemParameter " +
                    " (HInterID,HModClass,HKey,HCaption" +
                    ",HValue,HReadonly,HExplanation,HFarmat) " +
                    " Values(" + oModel.HInterID.ToString() + ",'" + oModel.HModClass + "','" + oModel.HKey + "','" + oModel.HCaption + "'" +
                    ",'" + oModel.HValue + "'," + Convert.ToString(oModel.HReadonly ? 1 : 0) + ",'" + oModel.HExplanation + "','" + oModel.HFarmat + "'" +
                    ")");
                //修改上级为非末级代码
                //oCN.RunProc("Update Xt_SystemParameter set HEndflag=0 where HItemID=" + this.HParentID);
                oCN.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCN.RollBack();
                return false; 
            }
        }
       
        //修改
        public bool ModifyByID(long sItemID)
        {
            try
            {
                oCN.BeginTran();
                oCN.RunProc("Update Xt_SystemParameter set " +
                    " HInterID=" + oModel.HInterID.ToString() +
                    ",HModClass='" + oModel.HModClass + "'" +
                    ",HKey='" + oModel.HKey + "'" +
                    ",HCaption='" + oModel.HCaption + "'" +
                    ",HValue='" + oModel.HValue + "'" +
                    ",HReadonly=" + Convert.ToString(oModel.HReadonly ? 1 : 0) +
                    ",HExplanation='" + oModel.HExplanation + "'" +
                    ",HFarmat= '" + oModel.HFarmat + "' Where HItemID=" + sItemID, ref DBUtility.ClsPub.sExeReturnInfo);
               
                oCN.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCN.RollBack();
                return false;
            }
        }
 
        #region 固定代码
        //删除
        public bool DeleteByID(long sItemID,ref string s)
        {
            try
            {
                oCN.RunProc("Delete from Xt_SystemParameter where HItemID='" + sItemID + "'");
                return true;
            }
            catch (Exception e)
            {
                s = e.Message;
                return false;
            }
        }
        //构造函数
        public ClsXt_SystemParameter() 
        {
            MvarItemKey = "Xt_SystemParameter";
            MvarReportTitle = "系统参数设置";
        }
        #endregion
    }
}