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