Browse Source

修改bug

zhoufan 7 years ago
parent
commit
e2e291a846

+ 1 - 1
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/DictionaryController.cs

@@ -142,7 +142,7 @@ namespace CallCenterApi.Interface.Controllers
142 142
         {
143 143
             int id = RequestString.GetInt("id", 0);
144 144
             DataTable dt = new DataTable();
145
-            dt = new BLL.T_Sys_DictionaryValue().GetList(" F_ItemId='" + id + "' and F_State=0 ").Tables[0];
145
+            dt = new BLL.T_Sys_DictionaryValue().GetList(0," F_ItemId='" + id + "' and F_State=0 "," F_Remark asc").Tables[0];
146 146
             return Success("列表加载成功", dt);
147 147
 
148 148
         }