update 修改所有dilon

This commit is contained in:
2021-04-25 15:00:17 +08:00
parent c300dec039
commit 7c40825850
19 changed files with 1415 additions and 1415 deletions

View File

@@ -1499,13 +1499,13 @@
<summary>
任务名称
</summary>
<example>dilon</example>
<example>ewide</example>
</member>
<member name="P:Ewide.Core.SysTimer.JobGroup">
<summary>
任务分组
</summary>
<example>dilon</example>
<example>ewide</example>
</member>
<member name="P:Ewide.Core.SysTimer.BeginTime">
<summary>
@@ -6080,13 +6080,13 @@
<summary>
任务名称
</summary>
<example>dilon</example>
<example>ewide</example>
</member>
<member name="P:Ewide.Core.Service.JobInput.JobGroup">
<summary>
任务分组
</summary>
<example>dilon</example>
<example>ewide</example>
</member>
<member name="P:Ewide.Core.Service.JobInput.BeginTime">
<summary>

View File

@@ -15,14 +15,14 @@ namespace Ewide.Core
/// <summary>
/// 任务名称
/// </summary>
/// <example>dilon</example>
/// <example>ewide</example>
[Comment("任务名称")]
public string JobName { get; set; }
/// <summary>
/// 任务分组
/// </summary>
/// <example>dilon</example>
/// <example>ewide</example>
[Comment("任务分组")]
public string JobGroup { get; set; }

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>Dilon.Core.xml</DocumentationFile>
<DocumentationFile>Ewide.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
@@ -19,7 +19,7 @@
</ItemGroup>
<ItemGroup>
<None Remove="Dilon.Core.xml" />
<None Remove="Ewide.Core.xml" />
</ItemGroup>
<ItemGroup>

File diff suppressed because it is too large Load Diff

View File

@@ -17,7 +17,7 @@ namespace Ewide.Core
Name = "默认租户",
Host = "localhost:5566",
CreatedTime = DateTime.Parse("2021-04-03 00:00:00"),
Connection = "Data Source=./Dilon.db",
Connection = "Data Source=./Ewide.db",
Email = "zuohuaijun@163.com",
Phone = "18020030720"
}, // 142307070918780

View File

@@ -322,7 +322,7 @@ namespace Ewide.Core.Service.CodeGen
/// <returns></returns>
private List<string> GetTargetPathList(SysCodeGen input)
{
var backendPath = new DirectoryInfo(App.WebHostEnvironment.ContentRootPath).Parent.FullName + @"\Dilon.Application\Service\" + input.TableName + @"\";
var backendPath = new DirectoryInfo(App.WebHostEnvironment.ContentRootPath).Parent.FullName + @"\Ewide.Application\Service\" + input.TableName + @"\";
var servicePath = backendPath + input.TableName + "Service.cs";
var iservicePath = backendPath + "I" + input.TableName + "Service.cs";
var inputPath = backendPath + @"Dto\" + input.TableName + "Input.cs";

View File

@@ -31,7 +31,7 @@ namespace Ewide.Core.Service.OAuth
[HttpGet("oauth/wechat")]
public Task WechatLogin()
{
_httpContext.Response.Redirect(_wechatOAuth.GetAuthorizeUrl("Dilon"));
_httpContext.Response.Redirect(_wechatOAuth.GetAuthorizeUrl("Ewide"));
return Task.CompletedTask;
}

View File

@@ -12,13 +12,13 @@ namespace Ewide.Core.Service
/// <summary>
/// 任务名称
/// </summary>
/// <example>dilon</example>
/// <example>ewide</example>
public string JobName { get; set; }
/// <summary>
/// 任务分组
/// </summary>
/// <example>dilon</example>
/// <example>ewide</example>
public string JobGroup { get; set; }
/// <summary>

View File

@@ -1,6 +1,6 @@
{
"SpecificationDocumentSettings": {
"DocumentTitle": "Dilon",
"DocumentTitle": "Ewide",
"DocExpansionState": "None",
"GroupOpenApiInfos": [
{
@@ -15,9 +15,9 @@
"ValidateIssuerSigningKey": true, // 是否验证密钥bool 类型默认true
"IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥string 类型必须是复杂密钥长度大于16
"ValidateIssuer": true, // 是否验证签发方bool 类型默认true
"ValidIssuer": "dilon", // 签发方string 类型
"ValidIssuer": "ewide", // 签发方string 类型
"ValidateAudience": true, // 是否验证签收方bool 类型默认true
"ValidAudience": "dilon", // 签收方string 类型
"ValidAudience": "ewide", // 签收方string 类型
"ValidateLifetime": true, // 是否验证过期时间bool 类型默认true建议true
"ExpiredTime": 1440, // 过期时间long 类型单位分钟默认20分钟
"ClockSkew": 5 // 过期时间容错值long 类型单位秒默认5秒