Vol/Net6.SqlSugar/VOL.Core/DBManager/DBConnectionAttribute.cs

12 lines
210 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace VOL.Core.DBManager
{
public class DBConnectionAttribute : Attribute
{
public string DBName { get; set; }
}
}