修改swagger首页

This commit is contained in:
2023-03-16 09:17:36 +08:00
parent a4ed390e82
commit b03cd609ac
5 changed files with 164 additions and 44 deletions

View File

@@ -0,0 +1,19 @@
using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.TaskScheduler.Entitys.Entity;
/// <summary>
/// 定时任务
/// 版 本V3.2
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021-06-01 .
/// </summary>
[SugarTable("snowid")]
[Tenant(ClaimConst.TENANTID)]
public class SnowIdEntity : IEntity<string>
{
//[SugarColumn(ColumnName = "id")]
public string Id { get; set; }
}