bklLiudl
2024-07-23 675b8bcc4a3630d95e3d0b97d933e63442075ecb
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
using Commom.Utility;
using Common;
using Model;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Text;
 
namespace BLL.DAL
{
    public class DALDictionary
    {
        /// <summary>
        /// 获取数据类别
        /// </summary>
        /// <returns></returns>
        public DataTable GetDictionarys()
        {
            try
            {
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.Append("select * from Dictionary where IsDel = 0 and topCode is null;");
 
                DataTable dt = DataFactory.SqlDataBase().GetDataTableBySQL(stringBuilder);
                return dt;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        public IList<Dictionarys> GetDictionaryItems(Dictionarys dictionarys, ref PageInfo page) 
        {
            try
            {
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.Append("select * from View_Dictionary_Userinfo where IsDel = 0 and TopCode is not null ");
                if (dictionarys.TopCode != null && dictionarys.TopCode != "")
                {
                    stringBuilder.Append(" and TopCode = " + dictionarys.TopCode.AddQuotes());
                }
                if (dictionarys.TypeName != null && dictionarys.TypeName != "")
                {
                    stringBuilder.Append(" and TypeName like '%" + dictionarys.TypeName + "%' ");
                }
                if (dictionarys.Guid != null && dictionarys.Guid != "") 
                {
                    stringBuilder.Append(" and Guid = " + dictionarys.Guid.AddQuotes());
                }
 
                SqlParam[] para = new SqlParam[]
                {
                };
 
                DataTable dt = DataFactory.SqlDataBase().GetPageList(stringBuilder.ToString(), para, "TopCode", "ASC", ref page);
                IList<Dictionarys> list = ModelConvertHelper<Dictionarys>.DataTableToModel(dt);
 
                return list;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        public bool SetDictionarys(Dictionarys dictionarys, string loginUser) 
        {
            try
            {
                bool bl = false;
                int rowCount = 0;
                Hashtable ht = new Hashtable();
                if (dictionarys.Guid == "")
                {
                    StringBuilder stringBuilder = new StringBuilder();
                    stringBuilder.Append("select isnull(max(Code),0)+1 from Dictionary where IsDel = 0 and TopCode =" + dictionarys.TopCode.AddQuotes());
                    if (dictionarys.TopCode == "CDStatu") 
                    {
                        stringBuilder.Append(" and code != '99';");
                    }                  
                    DataTable dt = DataFactory.SqlDataBase().GetDataTableBySQL(stringBuilder);
 
                    ht["Code"] = dt.Rows[0][0].ToString().PadLeft(2,'0').AddQuotes();
                    ht["TypeName"] = dictionarys.TypeName.AddQuotes();
                    ht["TopCode"] = dictionarys.TopCode.AddQuotes();
 
                    ht["CreatUser"] = loginUser.AddQuotes();
 
                    rowCount = DataFactory.SqlDataBase().InsertByHashtableNullParam("Dictionary", ht);
                }
                else
                {
                    ht["TypeName"] = dictionarys.TypeName.AddQuotes();
                    ht["TopCode"] = dictionarys.TopCode.AddQuotes();
 
                    ht["UpdateTime"] = "convert(varchar(20),getdate(),120)";
                    ht["UpdateUser"] = loginUser.AddQuotes();
 
                    rowCount = DataFactory.SqlDataBase().UpdateByHashtable("Dictionary",
                        "Guid", dictionarys.Guid.AddQuotes(), ht);
                }
 
                if (rowCount > 0)
                {
                    bl = true;
                }
 
                return bl;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        /// <summary>
        /// 检查是否已存在
        /// </summary>
        /// <param name="region"></param>
        /// <returns></returns>
        public bool IsExist(Dictionarys dictionarys)
        {
            try
            {
                bool bl = false;
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.Append("select count(*) from Dictionary where TypeName = " + dictionarys.TypeName.AddQuotes());
                stringBuilder.Append(" and TopCode = " + dictionarys.TopCode.AddQuotes() + " and isDel = 0 ");
                stringBuilder.Append("and Guid != " + dictionarys.Guid.AddQuotes() + ";");
                DataTable dt = DataFactory.SqlDataBase().GetDataTableBySQL(stringBuilder);
                if (dt.Rows[0][0].ToString() != "0")
                {
                    bl = true;
                }
 
                return bl;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
 
        public bool DelDictionarys(string[] Guids, string loginUser)
        {
            try
            {
                bool bl = false;
                int rowCount = 0;
                Hashtable ht = new Hashtable();
                foreach (string Guid in Guids)
                {
                    ht["IsDel"] = 1;
                    ht["UpdateTime"] = "convert(varchar(20),getdate(),120)";
                    ht["UpdateUser"] = loginUser.AddQuotes();
                    rowCount += DataFactory.SqlDataBase().UpdateByHashtable("Dictionary",
                            "Guid", Guid.AddQuotes(), ht);
                }
 
                if (rowCount > 0)
                {
                    bl = true;
                }
 
                return bl;
            }
            catch
            {
                throw new NotImplementedException();
            }
        }
    }
}