update使用最新版Furion改动
删除FakeDelete相关内容 SkipScan改名为SuppressSniffer
This commit is contained in:
@@ -6,7 +6,7 @@ namespace Ewide.Core
|
||||
/// <summary>
|
||||
/// 点击验证码输入参数
|
||||
/// </summary>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class ClickWordCaptchaInput
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace Ewide.Core
|
||||
/// <summary>
|
||||
/// 验证码输出参数
|
||||
/// </summary>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class ClickWordCaptchaResult
|
||||
{
|
||||
public string repCode { get; set; } = "0000";
|
||||
@@ -16,7 +16,7 @@ namespace Ewide.Core
|
||||
public bool success { get; set; } = true;
|
||||
}
|
||||
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class RepData
|
||||
{
|
||||
public string captchaId { get; set; }
|
||||
@@ -37,7 +37,7 @@ namespace Ewide.Core
|
||||
public string captchaVerification { get; set; }
|
||||
}
|
||||
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class WordList
|
||||
{
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace Ewide.Core
|
||||
/// <summary>
|
||||
/// 常规验证码输入
|
||||
/// </summary>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class GeneralCaptchaInput
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace Ewide.Core
|
||||
/// <summary>
|
||||
/// 软删除
|
||||
/// </summary>
|
||||
[JsonIgnore, FakeDelete(true)]
|
||||
[JsonIgnore]
|
||||
[Comment("软删除标记")]
|
||||
[Column("IsDeleted", TypeName = "bit")]
|
||||
public virtual bool IsDeleted { get; set; } = false;
|
||||
|
||||
@@ -29,11 +29,6 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="aliyun-net-sdk-core" Version="1.5.10" />
|
||||
<PackageReference Include="CSRedisCore" Version="3.6.6" />
|
||||
<PackageReference Include="Furion" Version="2.7.1" />
|
||||
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="2.7.1" />
|
||||
<PackageReference Include="Furion.Extras.DatabaseAccessor.Dapper" Version="2.7.1" />
|
||||
<PackageReference Include="Furion.Extras.Logging.Serilog" Version="2.7.1" />
|
||||
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="2.7.1" />
|
||||
<PackageReference Include="Kendo.DynamicLinqCore" Version="3.1.1" />
|
||||
<PackageReference Include="Portable.BouncyCastle" Version="1.8.10" />
|
||||
<PackageReference Include="Quartz" Version="3.3.2" />
|
||||
@@ -59,4 +54,12 @@
|
||||
<Folder Include="DataBaseXML\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Furion\framework\Furion.Extras.Authentication.JwtBearer\Furion.Extras.Authentication.JwtBearer.csproj" />
|
||||
<ProjectReference Include="..\Furion\framework\Furion.Extras.DatabaseAccessor.Dapper\Furion.Extras.DatabaseAccessor.Dapper.csproj" />
|
||||
<ProjectReference Include="..\Furion\framework\Furion.Extras.Logging.Serilog\Furion.Extras.Logging.Serilog.csproj" />
|
||||
<ProjectReference Include="..\Furion\framework\Furion.Extras.ObjectMapper.Mapster\Furion.Extras.ObjectMapper.Mapster.csproj" />
|
||||
<ProjectReference Include="..\Furion\framework\Furion\Furion.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace Ewide.Core
|
||||
/// <summary>
|
||||
/// 规范化RESTful风格返回值
|
||||
/// </summary>
|
||||
[SkipScan, UnifyModel(typeof(RestfulResult<>))]
|
||||
[SuppressSniffer, UnifyModel(typeof(RestfulResult<>))]
|
||||
public class RestfulResultProvider : IUnifyResultProvider
|
||||
{
|
||||
private IActionResult DisplayJson(object data)
|
||||
@@ -159,7 +159,7 @@ namespace Ewide.Core
|
||||
/// RESTful风格---XIAONUO返回格式
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class RestfulResult<T>
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace Ewide.Core.Service
|
||||
/// <summary>
|
||||
/// 登录输入参数
|
||||
/// </summary>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class LoginInput
|
||||
{
|
||||
/// <summary>
|
||||
@@ -25,7 +25,7 @@ namespace Ewide.Core.Service
|
||||
public virtual string Password { get; set; }
|
||||
}
|
||||
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class LoginPassInput : LoginInput
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Ewide.Core.Service
|
||||
{
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class LoginOutput
|
||||
{
|
||||
public bool Passed { get; set; }
|
||||
@@ -16,7 +16,7 @@ namespace Ewide.Core.Service
|
||||
/// <summary>
|
||||
/// 用户登录输出参数
|
||||
/// </summary>
|
||||
[SkipScan]
|
||||
[SuppressSniffer]
|
||||
public class LoginUserOutput
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user