平安校园
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.

SqlsugarConfig.cs 275 B

4 months ago
12345678910111213141516171819202122
  1. 
  2. //
  3. namespace SafeCampus.SqlSugar;
  4. /// <summary>
  5. /// SqlSugar数据库配置
  6. /// </summary>
  7. public sealed class SqlSugarConfig : ConnectionConfig
  8. {
  9. /// <summary>
  10. /// 是否驼峰转下划线
  11. /// </summary>
  12. public bool IsUnderLine { get; set; }
  13. }