飞牛fpk打包,新增一个初始化页面。用于飞牛fpk安装完成后初始配置

This commit is contained in:
jianzhichu
2025-12-27 11:44:30 +08:00
parent 44e3962093
commit cc6906ea63
32 changed files with 848 additions and 1710 deletions
+5
View File
@@ -87,6 +87,11 @@ namespace dy.net.model
/// 是否下载动态图视频
/// </summary>
public bool DownDynamicVideo { get; set; }
/// <summary>
/// 仅同步新视频(github 有人提议增加这个配置项,因为之前收藏了很多烂七八糟的视频。不想同步,又不想一个一个清除)
/// </summary>
public bool OnlySyncNew { get; set; } = true;
}
}
+10
View File
@@ -97,6 +97,16 @@ namespace dy.net.model
/// </summary>
[SugarColumn(Length = 100, IsNullable = true)]
public string StatusMsg { get; set; }
/// <summary>
/// 是否统一一个路径-用 SavePath
/// </summary>
public bool useSinglePath { get; set; }
/// <summary>
/// 服务端口--不存数据库
/// </summary>
[SugarColumn(IsIgnore =true)]
public int AppPort { get; set; }
}
}