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.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.Core;
-
- /// <summary>
- /// 默认业务配置
- /// </summary>
- public class BaseOptions
- {
- /// <summary>
- /// 初始化表
- /// </summary>
- public bool InitTable { get; set; } = false;
-
- /// <summary>
- /// 初始化数据
- /// </summary>
- public bool InitSeedData { get; set; } = false;
- }
|