Files
WarehouseMgmt/KingInfoWebApi/VolPro.Core/DbManager/DBConnectionAttribute.cs
2025-10-09 13:58:21 +08:00

12 lines
221 B
C#

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