chenzx
2025-01-08 a967a0836b90661205ce5ad14ac42cd4281f67dd
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
using CommonHelper;
using GasolineBlend.BLL;
using GasolineBlend.Entity;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
 
 
namespace GasolineBlend.Controllers
{
    public class MindRouterController : BaseController 
    {
        private MindRouterBLL _acc = new MindRouterBLL();
        /// <summary>
        ///获取地区智能体数据
        /// </summary>
        /// <param name="Keyword"></param>
        /// <returns></returns>
        [HttpPost]
         public ActionResult GetMindRouterList(string Text) 
        {
            try
            {
                var list = _acc.GetMindRouterList(Text);
                return SuccessNoShow(data: list);
            }
            catch (Exception e)
            {
                LogHelper.Write(Level.Error, "获取地区列表数据 GetMindRouterList", e, OperatorProvider.Instance.Current == null ? "GuestEx" : OperatorProvider.Instance.Current.LoginName);
                return Error();
            }
        }
    }
}