Files
Vue.NetCore/v3版本代码/.Net6版本/VOL.Core/DBManager/DBConnectionAttribute.cs
283591387@qq.com e7400607dd 新版本v3.5发布
2025-03-25 22:47:37 +08:00

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; }
}
}