平安校园
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SqlsugarConfig.cs 275 B

4 个月前
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. }