You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
292 B

2 years ago
  1. namespace SqlSugar
  2. {
  3. public class SlaveConnectionConfig
  4. {
  5. /// <summary>
  6. ///Default value is 1
  7. ///If value is 0 means permanent non execution
  8. /// </summary>
  9. public int HitRate = 1;
  10. public string ConnectionString { get; set; }
  11. }
  12. }