mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-23 00:19:42 +08:00
18 lines
379 B
C#
18 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class SlaveConnectionConfig
|
|
{
|
|
/// <summary>
|
|
///Default value is 1
|
|
///If value is 0 means permanent non execution
|
|
/// </summary>
|
|
public int HitRate = 1;
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
}
|