2025-04-17 20:28:50 +08:00

24 lines
455 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace JiShe.CollectBus.FreeSql
{
/// <summary>
/// 数据库枚举
/// </summary>
public enum DbEnum
{
/// <summary>
/// 微服务默认数据库MySQL
/// </summary>
Default,
/// <summary>
/// 预付费数据库SQLSERVER
/// </summary>
PrepayDB,
/// <summary>
/// 能耗数据库SQLSERVER
/// </summary>
EnergyDB
}
}