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
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing.Printing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommonHelper;
using Dapper;
using GasolineBlend.Entity;
using Google.Protobuf.WellKnownTypes;
using Microsoft.Office.Interop.Excel;
using MySql.Data.MySqlClient;
 
namespace GasolineBlend.DAL
{
    public class MindRouterDAL : BaseMySQLDAL
    {
 
        public List<MindRouterPage> GetMindRouterList(string Text)
        {
            using (IDbConnection connection = new MySqlConnection(connectionString))
            {
                var sql = $"SELECT * from mindrouter where thinking in({Text})";
                return connection.Query<MindRouterPage>(sql).ToList();
            }
        }
 
    }
}