|
12345678910111213141516171819202122 |
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.SqlSugar;
-
- /// <summary>
- /// SqlSugar数据库配置
- /// </summary>
- public sealed class SqlSugarConfig : ConnectionConfig
- {
- /// <summary>
- /// 是否驼峰转下划线
- /// </summary>
- public bool IsUnderLine { get; set; }
- }
|