Files
DeMiWebApi_yuyubo/FrameWork/SqlSugar/Utilities/CallContext.cs
2025-06-30 19:22:02 +08:00

16 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Text;
using System.Threading;
namespace SqlSugar
{
internal class CallContext
{
public static ThreadLocal<List<SqlSugarClient>> ContextList = new ThreadLocal<List<SqlSugarClient>>();
}
}