diff --git a/App/Constants.cs b/App/Constants.cs index 13ccab7..893fc3f 100644 --- a/App/Constants.cs +++ b/App/Constants.cs @@ -44,18 +44,19 @@ public sealed class Constants public static readonly Dictionary Events = new() { [0] = new(EventUnknown), - [1] = new("buy", true), // 购买 - [2] = new("born", true), // 出生 - [3] = new("changebasin"), // 换盆 - [4] = new("watering"), // 浇水 - [5] = new("fertilize"), // 施肥 - [6] = new("germination"), // 发芽 - [7] = new("blossom"), // 开花 - [8] = new("fallenleaves"), // 落叶 - [9] = new("prune"), // 修剪 - [10] = new("sick"), // 生病 - [11] = new("death", true), // 死亡 - [12] = new("sell", true), // 出售 + [1] = new("buy", true), // 购买 + [2] = new("born", true), // 出生 + [3] = new("changebasin"), // 换盆 + [4] = new("watering"), // 浇水 + [5] = new("fertilize"), // 施肥 + [6] = new("germination"), // 发芽 + [7] = new("blossom"), // 开花 + [8] = new("fallenleaves"), // 落叶 + [9] = new("prune"), // 修剪 + [10] = new("sick"), // 生病 + [11] = new("death", true), // 死亡 + [12] = new("sell", true), // 出售 + [13] = new("share"), // 分享 }; } diff --git a/Server/Controller/BaseController.cs b/Server/Controller/BaseController.cs index 2ac89b6..27a54c2 100644 --- a/Server/Controller/BaseController.cs +++ b/Server/Controller/BaseController.cs @@ -1,7 +1,6 @@ using Blahblah.FlowerStory.Server.Data; using Blahblah.FlowerStory.Server.Data.Model; using Microsoft.AspNetCore.Mvc; -using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.Net; using System.Security.Cryptography; diff --git a/Server/Controller/FlowerApiController.cs b/Server/Controller/FlowerApiController.cs index e6b85e8..aa2ff0e 100644 --- a/Server/Controller/FlowerApiController.cs +++ b/Server/Controller/FlowerApiController.cs @@ -449,7 +449,7 @@ public class FlowerApiController : BaseController /// /// /// 花草唯一 id - /// 事件类型 id,0 为封面 + /// 事件类型 id, 0 为封面 /// 验证通过则返回花草特定类型事件的照片列表 /// 返回花草特定类型事件的照片列表 /// 未找到登录会话或已过期 diff --git a/Server/Controller/SwaggerController.cs b/Server/Controller/SwaggerController.cs index a1c44b9..fb8daaa 100644 --- a/Server/Controller/SwaggerController.cs +++ b/Server/Controller/SwaggerController.cs @@ -68,15 +68,72 @@ public class SwaggerController : ControllerBase .method-post {{ color: #49cc90 }} .method-put {{ color: #fca130 }} .header {{ color: rbg(107 114 128) }} - .wrapper {{ - width: 1000px; - margin: 0 auto; + .navigator {{ + position: fixed; + width: 400px; + height: 100%; + top: 0; + left: 0; + font-size: .875rem; + background-color: #fff; }} + .navigator ul {{ + list-style: none; + padding-left: 20px; + line-height: 24px; + }} + .navigator ol {{ + list-style: none; + padding-left: 30px; + }} + .navigator a, .navigator a:visited {{ + text-decoration: none; + color: #333; + }} + .navigator a:hover {{ + color: #000; + text-decoration: underline; + }} + .wrapper {{ margin-left: 400px }} .operation {{ width: 100% }} .bg {{ background-color: rgb(84, 127, 177) }} +
+ +

{model.Info.Title}

接口文档 {model.Info.Version}

@@ -90,7 +147,7 @@ public class SwaggerController : ControllerBase continue; } builder.Append($@" -

{tag.Description}

+

{tag.Description}

"); foreach (var item in model.Paths) { @@ -104,7 +161,7 @@ public class SwaggerController : ControllerBase } var method = operation.Key.ToString(); builder.Append($@" -

{operation.Value.Summary}

+

{operation.Value.Summary}

{method.ToUpper()} {item.Key}
"); if (operation.Value.Parameters?.Count > 0) { @@ -251,7 +308,7 @@ public class SwaggerController : ControllerBase { builder.Append($@" - . + {schema.Type} "); diff --git a/Server/Program.cs b/Server/Program.cs index b7371da..85f2cb2 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -11,7 +11,7 @@ public class Program /// public const string ProjectName = "Flower Story"; /// - public const string Version = "0.3.526"; + public const string Version = "0.3.529"; /// public static void Main(string[] args) diff --git a/Server/Server.csproj b/Server/Server.csproj index ffec1af..6a39827 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -10,10 +10,6 @@ README.md - - - -