update gitignore
This commit is contained in:
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"ExpandedNodes": [
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"PreviewInSolutionExplorer": false
|
|
||||||
}
|
|
||||||
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ShowAllFiles>false</ShowAllFiles>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -48,6 +48,47 @@ namespace Ewide.NbzsZheliban.Tools
|
|||||||
Stream s = response.GetResponseStream();
|
Stream s = response.GetResponseStream();
|
||||||
StreamReader sr = new StreamReader(s);
|
StreamReader sr = new StreamReader(s);
|
||||||
|
|
||||||
|
strValue = sr.ReadToEnd();
|
||||||
|
return strValue;
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// 请求网页地址
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="url">网页地址</param>
|
||||||
|
/// <param name="param">参数</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static string CallUrl_xwwwformurlencoded(string url, string param)
|
||||||
|
{
|
||||||
|
//创建一个HTTP请求
|
||||||
|
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
|
||||||
|
//Post请求方式
|
||||||
|
request.Method = "POST";
|
||||||
|
//内容类型
|
||||||
|
request.ContentType = "application/x-www-form-urlencoded";
|
||||||
|
//request.ContentType = "application/json;charset=utf-8";
|
||||||
|
//byte[] bs = Encoding.ASCII.GetBytes(param); //参数转化为ascii码
|
||||||
|
byte[] bs = Encoding.UTF8.GetBytes(param);
|
||||||
|
request.ContentLength = bs.Length;
|
||||||
|
using (Stream reqStream = request.GetRequestStream())
|
||||||
|
{
|
||||||
|
reqStream.Write(bs, 0, bs.Length);
|
||||||
|
}
|
||||||
|
|
||||||
|
String strValue = "";//strValue为http响应所返回的字符流
|
||||||
|
HttpWebResponse response;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//获得响应流
|
||||||
|
response = (HttpWebResponse)request.GetResponse();
|
||||||
|
}
|
||||||
|
catch (WebException ex)
|
||||||
|
{
|
||||||
|
response = ex.Response as HttpWebResponse;
|
||||||
|
}
|
||||||
|
|
||||||
|
Stream s = response.GetResponseStream();
|
||||||
|
StreamReader sr = new StreamReader(s);
|
||||||
|
|
||||||
strValue = sr.ReadToEnd();
|
strValue = sr.ReadToEnd();
|
||||||
return strValue;
|
return strValue;
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,270 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Authentication.JwtBearer</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
JWT 授权服务拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="authenticationBuilder"></param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize">启动全局授权</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions})">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure">授权配置</param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TAuthorizationHandler"></typeparam>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure"></param>
|
|
||||||
<param name="tokenValidationParameters"></param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.ConfigureJWTOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.MultiClaimsDictionaryComparer">
|
|
||||||
<summary>
|
|
||||||
解决 Claims 身份重复键问题
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.Equals(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
设置字符串永不相等
|
|
||||||
</summary>
|
|
||||||
<param name="x"></param>
|
|
||||||
<param name="y"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.GetHashCode(System.String)">
|
|
||||||
<summary>
|
|
||||||
返回字符串 hashCode
|
|
||||||
</summary>
|
|
||||||
<param name="obj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.JWTSettingsOptions">
|
|
||||||
<summary>
|
|
||||||
Jwt 配置
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
验证签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.IssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuer">
|
|
||||||
<summary>
|
|
||||||
验证签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidIssuer">
|
|
||||||
<summary>
|
|
||||||
签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateAudience">
|
|
||||||
<summary>
|
|
||||||
验证签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidAudience">
|
|
||||||
<summary>
|
|
||||||
签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateLifetime">
|
|
||||||
<summary>
|
|
||||||
验证生存期
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ClockSkew">
|
|
||||||
<summary>
|
|
||||||
过期时间容错值,解决服务器端时间不同步问题(秒)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ExpiredTime">
|
|
||||||
<summary>
|
|
||||||
过期时间(分钟)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.Algorithm">
|
|
||||||
<summary>
|
|
||||||
加密算法
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.DataEncryption.JWTEncryption">
|
|
||||||
<summary>
|
|
||||||
JWT 加解密
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GenerateRefreshToken(System.String,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
生成刷新 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<param name="expiredTime">刷新 Token 有效期(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Exchange(System.String,System.String,System.Nullable{System.Int64},System.Int64)">
|
|
||||||
<summary>
|
|
||||||
通过过期Token 和 刷新Token 换取新的 Token
|
|
||||||
</summary>
|
|
||||||
<param name="expiredToken"></param>
|
|
||||||
<param name="refreshToken"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<param name="clockSkew">刷新token容差值,秒做单位</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.AutoRefreshToken(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext,System.Nullable{System.Int64},System.Int32,System.String,System.Int64)">
|
|
||||||
<summary>
|
|
||||||
自动刷新 Token 信息
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="expiredTime">新 Token 过期时间(分钟)</param>
|
|
||||||
<param name="refreshTokenExpiredTime">新刷新 Token 有效期(分钟)</param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<param name="clockSkew"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Validate(System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ValidateJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,Microsoft.IdentityModel.JsonWebTokens.JsonWebToken@,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="token"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ReadJwtToken(System.String)">
|
|
||||||
<summary>
|
|
||||||
读取 Token,不含验证
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
获取 JWT Bearer Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJWTSettings">
|
|
||||||
<summary>
|
|
||||||
获取 JWT 配置
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CreateTokenValidationParameters(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
生成Token验证参数
|
|
||||||
</summary>
|
|
||||||
<param name="jwtSettings"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CombinePayload(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
组合 Claims 负荷
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间,单位:分钟</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.SetDefaultJwtSettings(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
设置默认 Jwt 配置
|
|
||||||
</summary>
|
|
||||||
<param name="options"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetCurrentHttpContext">
|
|
||||||
<summary>
|
|
||||||
获取当前的 HttpContext
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="F:Furion.DataEncryption.JWTEncryption.StationaryClaimTypes">
|
|
||||||
<summary>
|
|
||||||
固定的 Claim 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.DataEncryption.JWTEncryption.FrameworkApp">
|
|
||||||
<summary>
|
|
||||||
框架 App 静态类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetFrameworkContext(System.Reflection.Assembly)">
|
|
||||||
<summary>
|
|
||||||
获取框架上下文
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,582 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.Dapper</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
Dapper 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions.AddDapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
添加 Dapper 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="connectionString">连接字符串</param>
|
|
||||||
<param name="sqlProvider"> <see cref="T:Dapper.SqlProvider"/> 类型</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.SqlProvider">
|
|
||||||
<summary>
|
|
||||||
Sql 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlServer">
|
|
||||||
<summary>
|
|
||||||
SqlServer 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Sqlite">
|
|
||||||
<summary>
|
|
||||||
Sqlite 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.MySql">
|
|
||||||
<summary>
|
|
||||||
MySql 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Npgsql">
|
|
||||||
<summary>
|
|
||||||
PostgreSQL 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Oracle">
|
|
||||||
<summary>
|
|
||||||
Oracle 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Firebird">
|
|
||||||
<summary>
|
|
||||||
Firebird 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlProviderDbConnectionTypeCollection">
|
|
||||||
<summary>
|
|
||||||
数据库提供器连接对象类型集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.#cctor">
|
|
||||||
<summary>
|
|
||||||
静态构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.GetDbConnectionType(System.String)">
|
|
||||||
<summary>
|
|
||||||
获取数据库连接对象类型
|
|
||||||
</summary>
|
|
||||||
<param name="sqlProvider"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._db">
|
|
||||||
<summary>
|
|
||||||
数据库连接对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,960 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.SqlSugar</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:SqlSugar.PagedQueryableExtensions">
|
|
||||||
<summary>
|
|
||||||
分页拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedList``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedListAsync``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlProfiler">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 打印SQL语句参数格式化帮助类
|
|
||||||
【使用方式】:在需要打印SQL语句的地方,如 Startup,将
|
|
||||||
App.PrintToMiniProfiler("SqlSugar1", "Info", sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
|
||||||
替换为
|
|
||||||
App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars));
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,SqlSugar.SugarParameter[])">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,System.Object)">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarPagedList`1">
|
|
||||||
<summary>
|
|
||||||
分页泛型集合
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageIndex">
|
|
||||||
<summary>
|
|
||||||
页码
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageSize">
|
|
||||||
<summary>
|
|
||||||
页容量
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalCount">
|
|
||||||
<summary>
|
|
||||||
总条数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalPages">
|
|
||||||
<summary>
|
|
||||||
总页数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.Items">
|
|
||||||
<summary>
|
|
||||||
当前页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasPrevPages">
|
|
||||||
<summary>
|
|
||||||
是否有上一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasNextPages">
|
|
||||||
<summary>
|
|
||||||
是否有下一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.PagedModel">
|
|
||||||
<summary>
|
|
||||||
分页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity"></typeparam>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.#ctor(System.IServiceProvider,SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider">服务提供器</param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository`1._sqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.#ctor(SqlSugar.ISqlSugarRepository)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarRepository"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="insertObj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkAttribute">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元配置特性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor(System.Data.IsolationLevel)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>支持传入事务隔离级别 <see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/> 参数值</para>
|
|
||||||
</remarks>
|
|
||||||
<param name="isolationLevel">事务隔离级别</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel">
|
|
||||||
<summary>
|
|
||||||
事务隔离级别
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>默认:<see cref="F:System.Data.IsolationLevel.ReadCommitted"/>,参见:<see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/></para>
|
|
||||||
<para>说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作</para>
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkFilter">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元拦截器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter.FilterOrder">
|
|
||||||
<summary>
|
|
||||||
过滤器排序
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkFilter.Order">
|
|
||||||
<summary>
|
|
||||||
排序属性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter._sqlSugarClient">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.#ctor(SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarClient"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)">
|
|
||||||
<summary>
|
|
||||||
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="next"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig,System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="config"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig[],System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="configs"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Logging.Serilog</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.Hosting.SerilogHostingExtensions">
|
|
||||||
<summary>
|
|
||||||
Serilog 日志拓展
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="hostBuilder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns>IWebHostBuilder</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="builder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.ObjectMapper.Mapster</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
对象映射拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions.AddObjectMapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Reflection.Assembly[])">
|
|
||||||
<summary>
|
|
||||||
添加对象映射
|
|
||||||
</summary>
|
|
||||||
<param name="services">服务集合</param>
|
|
||||||
<param name="assemblies">扫描的程序集</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
|||||||
namespace Ewide.Core.Service
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 数据库表列表参数
|
|
||||||
/// </summary>
|
|
||||||
public class TableOutput
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 表名(字母形式的)
|
|
||||||
/// </summary>
|
|
||||||
public string TableName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 创建时间
|
|
||||||
/// </summary>
|
|
||||||
public string CreateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 更新时间
|
|
||||||
/// </summary>
|
|
||||||
public string UpdateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 表名称描述(注释)(功能名)
|
|
||||||
/// </summary>
|
|
||||||
public string TableComment { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"SpecificationDocumentSettings": {
|
|
||||||
"DocumentTitle": "Ewide",
|
|
||||||
"DocExpansionState": "None",
|
|
||||||
"GroupOpenApiInfos": [
|
|
||||||
{
|
|
||||||
"Group": "Default",
|
|
||||||
"Title": "Admin.NET通用权限管理平台",
|
|
||||||
"Description": "前后端分离架构,开箱即用,紧随前沿技术。<br/>后台.NET5平台基于Furion框架,前端基于XiaoNuo生态技术框架的vue版本。<br/><a href='https://dotnetchina.gitee.io/furion/'>Furion框架,让 .NET 开发更简单,更通用,更流行</a><br/><a href='https://gitee.com/xiaonuobase/xiaonuo-vue/'>XiaoNuo前端框架采用Vue2.x + AntDesign Vue pro1.x + Axios</a>",
|
|
||||||
"Version": "1.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Group": "HouseBusiness",
|
|
||||||
"Title": "城镇房屋业务接口",
|
|
||||||
"Description": "城镇房屋业务接口</a>",
|
|
||||||
"Version": "1.0.1"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"JWTSettings": {
|
|
||||||
"ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true
|
|
||||||
"IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥,string 类型,必须是复杂密钥,长度大于16
|
|
||||||
"ValidateIssuer": true, // 是否验证签发方,bool 类型,默认true
|
|
||||||
"ValidIssuer": "ewide", // 签发方,string 类型
|
|
||||||
"ValidateAudience": true, // 是否验证签收方,bool 类型,默认true
|
|
||||||
"ValidAudience": "ewide", // 签收方,string 类型
|
|
||||||
"ValidateLifetime": true, // 是否验证过期时间,bool 类型,默认true,建议true
|
|
||||||
"ExpiredTime": 1440, // 过期时间,long 类型,单位分钟,默认20分钟
|
|
||||||
"ClockSkew": 5 // 过期时间容错值,long 类型,单位秒,默认5秒
|
|
||||||
},
|
|
||||||
"WriteXmlPath": {
|
|
||||||
"SeedData": "SeedDataXml",
|
|
||||||
"DataBase": "DataBaseXml",
|
|
||||||
"ReadSelect": "SeedData" // SeedData 和 DataBase 两个中间选
|
|
||||||
},
|
|
||||||
"RSA": {
|
|
||||||
"publickey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>",
|
|
||||||
"privatekey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent><P>7yKLJO9dobe7pNW3ob+Vse8kvlA+PObDrZNqFxUTLyXoAeHDnwz3BjJ2EVUPNJHV5F1/KPLTvADIjDrdB1qcbw==</P><Q>w9ZK0SHBddtE91skFFS72YDmxzmXumSuUyREStVul9ke0oU2HjcZA915bmR0Zrh1RzO3y1w9zXVn+GdZGjyd6w==</Q><DP>ncA67E2fhcwv0+hMcD5zYOLyaT2EISbWFQ43ISz879BgwcUOCEFEP+lP69Uh57sAz9pBxWCS/uXBZoh6QJysrw==</DP><DQ>vbC8F4YS1g3l55Koh+jra+qnnyHyDeGn2XCvlazWys7MRC40FWBZIp1MGdnDxhu1vZoi1SAr3O90HfA9JmTAsQ==</DQ><InverseQ>00v2vMCcgXy78eMby7R6zfZzacVnVFO2WeyxYF7pjrXYYP+C4JSJkWpy6JGLWbgZrK8HAuRguJmdRi8K2KiYWg==</InverseQ><D>rV3nb9nmwQDMGMrI2GyN30uivygfFj0TdgK8Tb1aqPzu1yRT46M4yXmuhkTiW7nxp+iANGssIx5+3Ch4gRj+r6BgBPldWNErK95a2v2Ae1+EzfVf21ybguBYeUVnV9c8qwoodZSVOajZapOgoS6s5TEOxHWRcF22AiFuaD1Tl90=</D></RSAKeyValue>"
|
|
||||||
},
|
|
||||||
"Mail": {
|
|
||||||
"Account": "983235253@qq.com",
|
|
||||||
"PassWord": "izknskjprlusbehf", //qq邮箱授权码
|
|
||||||
"Subject": "宽易邮箱发送测试",
|
|
||||||
"Host": "smtp.qq.com" //邮箱服务器地址
|
|
||||||
},
|
|
||||||
"SmsHelper": {
|
|
||||||
"Aliyun_AccessKey": "LTAI4GHRRNkDXKxpk19A3P1A",
|
|
||||||
"Aliyun_AccessSecret": "cFyvfufSSa2b6BiQj9NZ1edYkJStNM",
|
|
||||||
"Aliyun_Smscode_SignName": "ABC商城",
|
|
||||||
"Aliyun_Smscode_TemplateCode": "SMS_204970706"
|
|
||||||
},
|
|
||||||
"Cache": {
|
|
||||||
"CacheType": "MemoryCache", // RedisCache
|
|
||||||
"RedisConnectionString": "127.0.0.1:6379,password=,defaultDatabase=2"
|
|
||||||
},
|
|
||||||
"SnowId": {
|
|
||||||
"WorkerId": "1" // 取值范围0~63,默认1
|
|
||||||
},
|
|
||||||
"OAuth": {
|
|
||||||
"Wechat": {
|
|
||||||
"app_id": "wx2959fdd3abc05362",
|
|
||||||
"app_key": "829f65b2be0652bcd50ea8cb820fd7fa",
|
|
||||||
"redirect_uri": "http://127.0.0.1:56868/oauth/wechatcallback",
|
|
||||||
"scope": "snsapi_userinfo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"UploadFile": {
|
|
||||||
// 头像
|
|
||||||
"Avatar": {
|
|
||||||
"path": "Upload/Avatar",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 文档
|
|
||||||
"Document": {
|
|
||||||
"path": "Upload/Document",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
},
|
|
||||||
// 商店
|
|
||||||
"Shop": {
|
|
||||||
"path": "Upload/Shop",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 默认
|
|
||||||
"Default": {
|
|
||||||
"path": "Upload/Default",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"CoreSettings": {
|
|
||||||
"DefalutRoute": [
|
|
||||||
"getLoginUser",
|
|
||||||
"logout",
|
|
||||||
"sysDictType:dropDown",
|
|
||||||
"sysDictType:dropDowns",
|
|
||||||
"sysFileInfo:upload",
|
|
||||||
"sysFileInfo:download",
|
|
||||||
"sysFileInfo:detail",
|
|
||||||
"sysFileInfo:preview",
|
|
||||||
"sysUser:updateInfo",
|
|
||||||
"sysUser:updatePwd",
|
|
||||||
"sysUser:updateAvatar",
|
|
||||||
"sysUser:checkBindcode",
|
|
||||||
"sysUser:getPwdRule",
|
|
||||||
"sysUser:sendCode",
|
|
||||||
"sysNotice:received",
|
|
||||||
"sysNotice:unread",
|
|
||||||
"sysNotice:detail",
|
|
||||||
"houseLog:list",
|
|
||||||
"houseLog:listByInfoId",
|
|
||||||
"houseLog:listByTaskId"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"SimplePassword": {
|
|
||||||
"Pattern": "(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])(?=.*[^a-zA-Z0-9]){8,}",
|
|
||||||
"Descriptions": "密码中必须包含大小字母、数字、特称字符,至少8个字符"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,270 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Authentication.JwtBearer</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
JWT 授权服务拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.AspNetCore.Authentication.AuthenticationBuilder,System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="authenticationBuilder"></param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize">启动全局授权</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions})">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure">授权配置</param>
|
|
||||||
<param name="tokenValidationParameters">token 验证参数</param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.AddJwt``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{Microsoft.AspNetCore.Authentication.AuthenticationOptions},System.Object,System.Action{Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions},System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TAuthorizationHandler"></typeparam>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="authenticationConfigure"></param>
|
|
||||||
<param name="tokenValidationParameters"></param>
|
|
||||||
<param name="jwtBearerConfigure"></param>
|
|
||||||
<param name="enableGlobalAuthorize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.JWTAuthorizationServiceCollectionExtensions.ConfigureJWTOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
|
|
||||||
<summary>
|
|
||||||
添加 JWT 授权
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.MultiClaimsDictionaryComparer">
|
|
||||||
<summary>
|
|
||||||
解决 Claims 身份重复键问题
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.Equals(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
设置字符串永不相等
|
|
||||||
</summary>
|
|
||||||
<param name="x"></param>
|
|
||||||
<param name="y"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.Authorization.MultiClaimsDictionaryComparer.GetHashCode(System.String)">
|
|
||||||
<summary>
|
|
||||||
返回字符串 hashCode
|
|
||||||
</summary>
|
|
||||||
<param name="obj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.Authorization.JWTSettingsOptions">
|
|
||||||
<summary>
|
|
||||||
Jwt 配置
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
验证签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.IssuerSigningKey">
|
|
||||||
<summary>
|
|
||||||
签发方密钥
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateIssuer">
|
|
||||||
<summary>
|
|
||||||
验证签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidIssuer">
|
|
||||||
<summary>
|
|
||||||
签发方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateAudience">
|
|
||||||
<summary>
|
|
||||||
验证签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidAudience">
|
|
||||||
<summary>
|
|
||||||
签收方
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ValidateLifetime">
|
|
||||||
<summary>
|
|
||||||
验证生存期
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ClockSkew">
|
|
||||||
<summary>
|
|
||||||
过期时间容错值,解决服务器端时间不同步问题(秒)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.ExpiredTime">
|
|
||||||
<summary>
|
|
||||||
过期时间(分钟)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.Authorization.JWTSettingsOptions.Algorithm">
|
|
||||||
<summary>
|
|
||||||
加密算法
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:Furion.DataEncryption.JWTEncryption">
|
|
||||||
<summary>
|
|
||||||
JWT 加解密
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Encrypt(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
生成 Token
|
|
||||||
</summary>
|
|
||||||
<param name="issuerSigningKey"></param>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="algorithm"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GenerateRefreshToken(System.String,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
生成刷新 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<param name="expiredTime">刷新 Token 有效期(分钟)</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Exchange(System.String,System.String,System.Nullable{System.Int64},System.Int64)">
|
|
||||||
<summary>
|
|
||||||
通过过期Token 和 刷新Token 换取新的 Token
|
|
||||||
</summary>
|
|
||||||
<param name="expiredToken"></param>
|
|
||||||
<param name="refreshToken"></param>
|
|
||||||
<param name="expiredTime">过期时间(分钟)</param>
|
|
||||||
<param name="clockSkew">刷新token容差值,秒做单位</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.AutoRefreshToken(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext,Microsoft.AspNetCore.Http.DefaultHttpContext,System.Nullable{System.Int64},System.Int32,System.String,System.Int64)">
|
|
||||||
<summary>
|
|
||||||
自动刷新 Token 信息
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="expiredTime">新 Token 过期时间(分钟)</param>
|
|
||||||
<param name="refreshTokenExpiredTime">新刷新 Token 有效期(分钟)</param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<param name="clockSkew"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.Validate(System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ValidateJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,Microsoft.IdentityModel.JsonWebTokens.JsonWebToken@,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
验证 Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="token"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.ReadJwtToken(System.String)">
|
|
||||||
<summary>
|
|
||||||
读取 Token,不含验证
|
|
||||||
</summary>
|
|
||||||
<param name="accessToken"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJwtBearerToken(Microsoft.AspNetCore.Http.DefaultHttpContext,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
获取 JWT Bearer Token
|
|
||||||
</summary>
|
|
||||||
<param name="httpContext"></param>
|
|
||||||
<param name="headerKey"></param>
|
|
||||||
<param name="tokenPrefix"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetJWTSettings">
|
|
||||||
<summary>
|
|
||||||
获取 JWT 配置
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CreateTokenValidationParameters(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
生成Token验证参数
|
|
||||||
</summary>
|
|
||||||
<param name="jwtSettings"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.CombinePayload(System.Collections.Generic.IDictionary{System.String,System.Object},System.Nullable{System.Int64})">
|
|
||||||
<summary>
|
|
||||||
组合 Claims 负荷
|
|
||||||
</summary>
|
|
||||||
<param name="payload"></param>
|
|
||||||
<param name="expiredTime">过期时间,单位:分钟</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.SetDefaultJwtSettings(Furion.Authorization.JWTSettingsOptions)">
|
|
||||||
<summary>
|
|
||||||
设置默认 Jwt 配置
|
|
||||||
</summary>
|
|
||||||
<param name="options"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetCurrentHttpContext">
|
|
||||||
<summary>
|
|
||||||
获取当前的 HttpContext
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="F:Furion.DataEncryption.JWTEncryption.StationaryClaimTypes">
|
|
||||||
<summary>
|
|
||||||
固定的 Claim 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Furion.DataEncryption.JWTEncryption.FrameworkApp">
|
|
||||||
<summary>
|
|
||||||
框架 App 静态类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Furion.DataEncryption.JWTEncryption.GetFrameworkContext(System.Reflection.Assembly)">
|
|
||||||
<summary>
|
|
||||||
获取框架上下文
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,582 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.Dapper</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
Dapper 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.DapperServiceCollectionExtensions.AddDapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
添加 Dapper 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="connectionString">连接字符串</param>
|
|
||||||
<param name="sqlProvider"> <see cref="T:Dapper.SqlProvider"/> 类型</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.SqlProvider">
|
|
||||||
<summary>
|
|
||||||
Sql 类型
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlServer">
|
|
||||||
<summary>
|
|
||||||
SqlServer 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Sqlite">
|
|
||||||
<summary>
|
|
||||||
Sqlite 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.MySql">
|
|
||||||
<summary>
|
|
||||||
MySql 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Npgsql">
|
|
||||||
<summary>
|
|
||||||
PostgreSQL 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Oracle">
|
|
||||||
<summary>
|
|
||||||
Oracle 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.Firebird">
|
|
||||||
<summary>
|
|
||||||
Firebird 提供器程序集
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.SqlProvider.SqlProviderDbConnectionTypeCollection">
|
|
||||||
<summary>
|
|
||||||
数据库提供器连接对象类型集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.#cctor">
|
|
||||||
<summary>
|
|
||||||
静态构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.SqlProvider.GetDbConnectionType(System.String)">
|
|
||||||
<summary>
|
|
||||||
获取数据库连接对象类型
|
|
||||||
</summary>
|
|
||||||
<param name="sqlProvider"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._db">
|
|
||||||
<summary>
|
|
||||||
数据库连接对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:Dapper.DapperRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.DapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.DapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.#ctor(System.IServiceProvider,System.Data.IDbConnection)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider"></param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.DapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 Dapper 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.Context">
|
|
||||||
<summary>
|
|
||||||
连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:Dapper.IDapperRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态连接上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Query``1(System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="buffered"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回动态类型
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.QueryAsync``1(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
查询返回特定类型
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T"></typeparam>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Execute(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.ExecuteAsync(System.String,System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32},System.Nullable{System.Data.CommandType})">
|
|
||||||
<summary>
|
|
||||||
执行命令
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="param"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="commandType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Dapper.IDapperRepository`1">
|
|
||||||
<summary>
|
|
||||||
Dapper 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Get(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAsync(System.Object,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取一条
|
|
||||||
</summary>
|
|
||||||
<param name="id"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAll(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.GetAllAsync(System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
获取所有实体
|
|
||||||
</summary>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Insert(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32},ISqlAdapter)">
|
|
||||||
<summary>
|
|
||||||
新增多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<param name="sqlAdapter"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Update(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
更新多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(`0,System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除一条
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.Delete(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Dapper.IDapperRepository`1.DeleteAsync(System.Collections.Generic.IEnumerable{`0},System.Data.IDbTransaction,System.Nullable{System.Int32})">
|
|
||||||
<summary>
|
|
||||||
删除多条
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<param name="transaction"></param>
|
|
||||||
<param name="commandTimeout"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,960 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.DatabaseAccessor.SqlSugar</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:SqlSugar.PagedQueryableExtensions">
|
|
||||||
<summary>
|
|
||||||
分页拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedList``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.PagedQueryableExtensions.ToPagedListAsync``1(SqlSugar.ISugarQueryable{``0},System.Int32,System.Int32)">
|
|
||||||
<summary>
|
|
||||||
分页拓展
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<param name="pageIndex"></param>
|
|
||||||
<param name="pageSize"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlProfiler">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 打印SQL语句参数格式化帮助类
|
|
||||||
【使用方式】:在需要打印SQL语句的地方,如 Startup,将
|
|
||||||
App.PrintToMiniProfiler("SqlSugar1", "Info", sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
|
||||||
替换为
|
|
||||||
App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars));
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,SqlSugar.SugarParameter[])">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlProfiler.ParameterFormat(System.String,System.Object)">
|
|
||||||
<summary>
|
|
||||||
格式化参数拼接成完整的SQL语句
|
|
||||||
</summary>
|
|
||||||
<param name="sql"></param>
|
|
||||||
<param name="pars"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarPagedList`1">
|
|
||||||
<summary>
|
|
||||||
分页泛型集合
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageIndex">
|
|
||||||
<summary>
|
|
||||||
页码
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.PageSize">
|
|
||||||
<summary>
|
|
||||||
页容量
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalCount">
|
|
||||||
<summary>
|
|
||||||
总条数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.TotalPages">
|
|
||||||
<summary>
|
|
||||||
总页数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.Items">
|
|
||||||
<summary>
|
|
||||||
当前页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasPrevPages">
|
|
||||||
<summary>
|
|
||||||
是否有上一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarPagedList`1.HasNextPages">
|
|
||||||
<summary>
|
|
||||||
是否有下一页
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.PagedModel">
|
|
||||||
<summary>
|
|
||||||
分页集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.ISqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储接口定义
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.ISqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.ISqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity"></typeparam>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository._serviceProvider">
|
|
||||||
<summary>
|
|
||||||
服务提供器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.#ctor(System.IServiceProvider,SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="serviceProvider">服务提供器</param>
|
|
||||||
<param name="db"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarRepository`1">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 仓储实现类
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TEntity"></typeparam>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarRepository`1._sqlSugarRepository">
|
|
||||||
<summary>
|
|
||||||
非泛型 SqlSugar 仓储
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.#ctor(SqlSugar.ISqlSugarRepository)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarRepository"></param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Entities">
|
|
||||||
<summary>
|
|
||||||
实体集合
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Context">
|
|
||||||
<summary>
|
|
||||||
数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.DynamicContext">
|
|
||||||
<summary>
|
|
||||||
动态数据库上下文
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarRepository`1.Ado">
|
|
||||||
<summary>
|
|
||||||
原生 Ado 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Count(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.CountAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取总数
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Any(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AnyAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
检查是否存在
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Object)">
|
|
||||||
<summary>
|
|
||||||
通过主键获取实体
|
|
||||||
</summary>
|
|
||||||
<param name="Id"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Single(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.SingleAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefault(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.FirstOrDefaultAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取一个实体
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToList(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.ToListAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{`0,System.Object}},SqlSugar.OrderByType)">
|
|
||||||
<summary>
|
|
||||||
获取列表
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<param name="orderByExpression"></param>
|
|
||||||
<param name="orderByType"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Insert(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentity(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="insertObj"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
新增多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.InsertReturnIdentityAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
新增一条记录返回自增Id
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Update(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
更新一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(`0[])">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.UpdateAsync(System.Collections.Generic.IEnumerable{`0})">
|
|
||||||
<summary>
|
|
||||||
更新多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entities"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Delete(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(`0)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="entity"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object)">
|
|
||||||
<summary>
|
|
||||||
删除一条记录
|
|
||||||
</summary>
|
|
||||||
<param name="key"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Object[])">
|
|
||||||
<summary>
|
|
||||||
删除多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="keys"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.DeleteAsync(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
自定义条件删除记录
|
|
||||||
</summary>
|
|
||||||
<param name="whereExpression"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Where(System.Boolean,System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
根据表达式查询多条记录
|
|
||||||
</summary>
|
|
||||||
<param name="condition"></param>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsQueryable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
构建查询分析器
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.AsAsyncEnumerable(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
|
|
||||||
<summary>
|
|
||||||
直接返回数据库结果
|
|
||||||
</summary>
|
|
||||||
<param name="predicate"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarRepository`1.Change``1">
|
|
||||||
<summary>
|
|
||||||
切换仓储
|
|
||||||
</summary>
|
|
||||||
<typeparam name="TChangeEntity">实体类型</typeparam>
|
|
||||||
<returns>仓储</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkAttribute">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元配置特性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkAttribute.#ctor(System.Data.IsolationLevel)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>支持传入事务隔离级别 <see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/> 参数值</para>
|
|
||||||
</remarks>
|
|
||||||
<param name="isolationLevel">事务隔离级别</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel">
|
|
||||||
<summary>
|
|
||||||
事务隔离级别
|
|
||||||
</summary>
|
|
||||||
<remarks>
|
|
||||||
<para>默认:<see cref="F:System.Data.IsolationLevel.ReadCommitted"/>,参见:<see cref="P:SqlSugar.SqlSugarUnitOfWorkAttribute.IsolationLevel"/></para>
|
|
||||||
<para>说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作</para>
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="T:SqlSugar.SqlSugarUnitOfWorkFilter">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 工作单元拦截器
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter.FilterOrder">
|
|
||||||
<summary>
|
|
||||||
过滤器排序
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:SqlSugar.SqlSugarUnitOfWorkFilter.Order">
|
|
||||||
<summary>
|
|
||||||
排序属性
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:SqlSugar.SqlSugarUnitOfWorkFilter._sqlSugarClient">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 对象
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.#ctor(SqlSugar.ISqlSugarClient)">
|
|
||||||
<summary>
|
|
||||||
构造函数
|
|
||||||
</summary>
|
|
||||||
<param name="sqlSugarClient"></param>
|
|
||||||
</member>
|
|
||||||
<member name="M:SqlSugar.SqlSugarUnitOfWorkFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)">
|
|
||||||
<summary>
|
|
||||||
|
|
||||||
</summary>
|
|
||||||
<param name="context"></param>
|
|
||||||
<param name="next"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
SqlSugar 拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig,System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="config"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.SqlSugarServiceCollectionExtensions.AddSqlSugar(Microsoft.Extensions.DependencyInjection.IServiceCollection,SqlSugar.ConnectionConfig[],System.Action{SqlSugar.ISqlSugarClient})">
|
|
||||||
<summary>
|
|
||||||
添加 SqlSugar 拓展
|
|
||||||
</summary>
|
|
||||||
<param name="services"></param>
|
|
||||||
<param name="configs"></param>
|
|
||||||
<param name="buildAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.Logging.Serilog</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.Hosting.SerilogHostingExtensions">
|
|
||||||
<summary>
|
|
||||||
Serilog 日志拓展
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="hostBuilder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns>IWebHostBuilder</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.Hosting.SerilogHostingExtensions.UseSerilogDefault(Microsoft.Extensions.Hosting.IHostBuilder,System.Action{Serilog.LoggerConfiguration})">
|
|
||||||
<summary>
|
|
||||||
添加默认日志拓展
|
|
||||||
</summary>
|
|
||||||
<param name="builder"></param>
|
|
||||||
<param name="configAction"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>Furion.Extras.ObjectMapper.Mapster</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions">
|
|
||||||
<summary>
|
|
||||||
对象映射拓展类
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions.AddObjectMapper(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Reflection.Assembly[])">
|
|
||||||
<summary>
|
|
||||||
添加对象映射
|
|
||||||
</summary>
|
|
||||||
<param name="services">服务集合</param>
|
|
||||||
<param name="assemblies">扫描的程序集</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
|||||||
namespace Ewide.Core.Service
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 数据库表列表参数
|
|
||||||
/// </summary>
|
|
||||||
public class TableOutput
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 表名(字母形式的)
|
|
||||||
/// </summary>
|
|
||||||
public string TableName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 创建时间
|
|
||||||
/// </summary>
|
|
||||||
public string CreateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 更新时间
|
|
||||||
/// </summary>
|
|
||||||
public string UpdateTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 表名称描述(注释)(功能名)
|
|
||||||
/// </summary>
|
|
||||||
public string TableComment { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"SpecificationDocumentSettings": {
|
|
||||||
"DocumentTitle": "Ewide",
|
|
||||||
"DocExpansionState": "None",
|
|
||||||
"GroupOpenApiInfos": [
|
|
||||||
{
|
|
||||||
"Group": "Default",
|
|
||||||
"Title": "Admin.NET通用权限管理平台",
|
|
||||||
"Description": "前后端分离架构,开箱即用,紧随前沿技术。<br/>后台.NET5平台基于Furion框架,前端基于XiaoNuo生态技术框架的vue版本。<br/><a href='https://dotnetchina.gitee.io/furion/'>Furion框架,让 .NET 开发更简单,更通用,更流行</a><br/><a href='https://gitee.com/xiaonuobase/xiaonuo-vue/'>XiaoNuo前端框架采用Vue2.x + AntDesign Vue pro1.x + Axios</a>",
|
|
||||||
"Version": "1.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Group": "HouseBusiness",
|
|
||||||
"Title": "城镇房屋业务接口",
|
|
||||||
"Description": "城镇房屋业务接口</a>",
|
|
||||||
"Version": "1.0.1"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"JWTSettings": {
|
|
||||||
"ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true
|
|
||||||
"IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥,string 类型,必须是复杂密钥,长度大于16
|
|
||||||
"ValidateIssuer": true, // 是否验证签发方,bool 类型,默认true
|
|
||||||
"ValidIssuer": "ewide", // 签发方,string 类型
|
|
||||||
"ValidateAudience": true, // 是否验证签收方,bool 类型,默认true
|
|
||||||
"ValidAudience": "ewide", // 签收方,string 类型
|
|
||||||
"ValidateLifetime": true, // 是否验证过期时间,bool 类型,默认true,建议true
|
|
||||||
"ExpiredTime": 1440, // 过期时间,long 类型,单位分钟,默认20分钟
|
|
||||||
"ClockSkew": 5 // 过期时间容错值,long 类型,单位秒,默认5秒
|
|
||||||
},
|
|
||||||
"WriteXmlPath": {
|
|
||||||
"SeedData": "SeedDataXml",
|
|
||||||
"DataBase": "DataBaseXml",
|
|
||||||
"ReadSelect": "SeedData" // SeedData 和 DataBase 两个中间选
|
|
||||||
},
|
|
||||||
"RSA": {
|
|
||||||
"publickey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>",
|
|
||||||
"privatekey": "<RSAKeyValue><Modulus>tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=</Modulus><Exponent>AQAB</Exponent><P>7yKLJO9dobe7pNW3ob+Vse8kvlA+PObDrZNqFxUTLyXoAeHDnwz3BjJ2EVUPNJHV5F1/KPLTvADIjDrdB1qcbw==</P><Q>w9ZK0SHBddtE91skFFS72YDmxzmXumSuUyREStVul9ke0oU2HjcZA915bmR0Zrh1RzO3y1w9zXVn+GdZGjyd6w==</Q><DP>ncA67E2fhcwv0+hMcD5zYOLyaT2EISbWFQ43ISz879BgwcUOCEFEP+lP69Uh57sAz9pBxWCS/uXBZoh6QJysrw==</DP><DQ>vbC8F4YS1g3l55Koh+jra+qnnyHyDeGn2XCvlazWys7MRC40FWBZIp1MGdnDxhu1vZoi1SAr3O90HfA9JmTAsQ==</DQ><InverseQ>00v2vMCcgXy78eMby7R6zfZzacVnVFO2WeyxYF7pjrXYYP+C4JSJkWpy6JGLWbgZrK8HAuRguJmdRi8K2KiYWg==</InverseQ><D>rV3nb9nmwQDMGMrI2GyN30uivygfFj0TdgK8Tb1aqPzu1yRT46M4yXmuhkTiW7nxp+iANGssIx5+3Ch4gRj+r6BgBPldWNErK95a2v2Ae1+EzfVf21ybguBYeUVnV9c8qwoodZSVOajZapOgoS6s5TEOxHWRcF22AiFuaD1Tl90=</D></RSAKeyValue>"
|
|
||||||
},
|
|
||||||
"Mail": {
|
|
||||||
"Account": "983235253@qq.com",
|
|
||||||
"PassWord": "izknskjprlusbehf", //qq邮箱授权码
|
|
||||||
"Subject": "宽易邮箱发送测试",
|
|
||||||
"Host": "smtp.qq.com" //邮箱服务器地址
|
|
||||||
},
|
|
||||||
"SmsHelper": {
|
|
||||||
"Aliyun_AccessKey": "LTAI4GHRRNkDXKxpk19A3P1A",
|
|
||||||
"Aliyun_AccessSecret": "cFyvfufSSa2b6BiQj9NZ1edYkJStNM",
|
|
||||||
"Aliyun_Smscode_SignName": "ABC商城",
|
|
||||||
"Aliyun_Smscode_TemplateCode": "SMS_204970706"
|
|
||||||
},
|
|
||||||
"Cache": {
|
|
||||||
"CacheType": "MemoryCache", // RedisCache
|
|
||||||
"RedisConnectionString": "127.0.0.1:6379,password=,defaultDatabase=2"
|
|
||||||
},
|
|
||||||
"SnowId": {
|
|
||||||
"WorkerId": "1" // 取值范围0~63,默认1
|
|
||||||
},
|
|
||||||
"OAuth": {
|
|
||||||
"Wechat": {
|
|
||||||
"app_id": "wx2959fdd3abc05362",
|
|
||||||
"app_key": "829f65b2be0652bcd50ea8cb820fd7fa",
|
|
||||||
"redirect_uri": "http://127.0.0.1:56868/oauth/wechatcallback",
|
|
||||||
"scope": "snsapi_userinfo"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"UploadFile": {
|
|
||||||
// 头像
|
|
||||||
"Avatar": {
|
|
||||||
"path": "Upload/Avatar",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 文档
|
|
||||||
"Document": {
|
|
||||||
"path": "Upload/Document",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
},
|
|
||||||
// 商店
|
|
||||||
"Shop": {
|
|
||||||
"path": "Upload/Shop",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ]
|
|
||||||
},
|
|
||||||
// 默认
|
|
||||||
"Default": {
|
|
||||||
"path": "Upload/Default",
|
|
||||||
"maxSize": 1048576,
|
|
||||||
"contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"CoreSettings": {
|
|
||||||
"DefalutRoute": [
|
|
||||||
"getLoginUser",
|
|
||||||
"logout",
|
|
||||||
"sysDictType:dropDown",
|
|
||||||
"sysDictType:dropDowns",
|
|
||||||
"sysFileInfo:upload",
|
|
||||||
"sysFileInfo:download",
|
|
||||||
"sysFileInfo:detail",
|
|
||||||
"sysFileInfo:preview",
|
|
||||||
"sysUser:updateInfo",
|
|
||||||
"sysUser:updatePwd",
|
|
||||||
"sysUser:updateAvatar",
|
|
||||||
"sysUser:checkBindcode",
|
|
||||||
"sysUser:getPwdRule",
|
|
||||||
"sysUser:sendCode",
|
|
||||||
"sysNotice:received",
|
|
||||||
"sysNotice:unread",
|
|
||||||
"sysNotice:detail",
|
|
||||||
"houseLog:list",
|
|
||||||
"houseLog:listByInfoId",
|
|
||||||
"houseLog:listByTaskId"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"SimplePassword": {
|
|
||||||
"Pattern": "(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])(?=.*[^a-zA-Z0-9]){8,}",
|
|
||||||
"Descriptions": "密码中必须包含大小字母、数字、特称字符,至少8个字符"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
bda67fe14f40b15fe7bfa74fbb274fd21fb6cbb5
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net5.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.PublishSingleFile =
|
|
||||||
build_property.IncludeAllContentForSelfExtract =
|
|
||||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = Ewide.NbzsZheliban
|
|
||||||
build_property.ProjectDir = D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
a934c94fb064d6bd60c0741398e1a004ca47a59e
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Service\CodeGen\Dto\TableOutput.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\applicationconfig.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.deps.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Core.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.AssemblyReference.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.AssemblyInfoInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.AssemblyInfo.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.csproj.CopyComplete
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Debug\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Nbzs.Entity.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Debug\net5.0\Ewide.Nbzs.Entity.pdb
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,656 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj",
|
|
||||||
"projectName": "Ewide.Nbzs.Entity",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Newtonsoft.Json": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[13.0.1, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"projectName": "Ewide.NbzsZheliban",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.Nbzs.Entity\\Ewide.Nbzs.Entity.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Magick.NET-Q16-AnyCPU": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[8.3.1, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj",
|
|
||||||
"projectName": "Ewide.Core",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Ewide.Core\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj"
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": {
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"CSRedisCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.6.6, )"
|
|
||||||
},
|
|
||||||
"Kendo.DynamicLinqCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.1.1, )"
|
|
||||||
},
|
|
||||||
"Portable.BouncyCastle": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.8.10, )"
|
|
||||||
},
|
|
||||||
"Quartz": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.3.2, )"
|
|
||||||
},
|
|
||||||
"System.Drawing.Common": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.2, )"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.CodePages": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.0, )"
|
|
||||||
},
|
|
||||||
"UAParser": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[3.1.46, )"
|
|
||||||
},
|
|
||||||
"aliyun-net-sdk-core": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.5.10, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj",
|
|
||||||
"projectName": "Furion.Extras.Authentication.JwtBearer",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.Authentication.JwtBearer": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.9, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj",
|
|
||||||
"projectName": "Furion.Extras.DatabaseAccessor.Dapper",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Dapper.Contrib": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[2.0.78, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj",
|
|
||||||
"projectName": "Furion.Extras.DatabaseAccessor.SqlSugar",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"sqlSugarCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[5.0.3.8, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj",
|
|
||||||
"projectName": "Furion.Extras.Logging.Serilog",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Serilog.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.1.0, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj",
|
|
||||||
"projectName": "Furion.Extras.ObjectMapper.Mapster",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Mapster": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[7.2.0, )"
|
|
||||||
},
|
|
||||||
"Mapster.DependencyInjection": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[1.0.0, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": {
|
|
||||||
"version": "2.18.7",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj",
|
|
||||||
"projectName": "Furion",
|
|
||||||
"projectPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\",
|
|
||||||
"outputPath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net5.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net5.0": {
|
|
||||||
"targetAlias": "net5.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Furion.Extras.DependencyModel.CodeAnalysis": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[2.18.7, )"
|
|
||||||
},
|
|
||||||
"MiniProfiler.AspNetCore.Mvc": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[4.2.22, )"
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[6.1.5, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.AspNetCore.App": {
|
|
||||||
"privateAssets": "none"
|
|
||||||
},
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\z1303\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="C:\Users\z1303\.nuget\packages\" />
|
|
||||||
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\z1303\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
|
||||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\z1303\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2</PkgMicrosoft_CodeAnalysis_Analyzers>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 此代码由工具生成。
|
|
||||||
// 运行时版本:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||||
// 重新生成代码,这些更改将会丢失。
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Ewide.NbzsZheliban")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
2b86f477b8e1358f8acd0f034974c2944e2567c5
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net5.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.PublishSingleFile =
|
|
||||||
build_property.IncludeAllContentForSelfExtract =
|
|
||||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = Ewide.NbzsZheliban
|
|
||||||
build_property.ProjectDir = D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
bb13473e3cc2466fdcf53d235e9bb0ae703fada9
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Service\CodeGen\Dto\TableOutput.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\applicationconfig.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.deps.json
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Core.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Authentication.JwtBearer.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.Dapper.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.Logging.Serilog.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Furion.Extras.ObjectMapper.Mapster.xml
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.AssemblyReference.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.AssemblyInfoInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.AssemblyInfo.cs
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.CoreCompileInputs.cache
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.csproj.CopyComplete
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\ref\Ewide.NbzsZheliban.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\obj\Release\net5.0\Ewide.NbzsZheliban.pdb
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Nbzs.Entity.dll
|
|
||||||
D:\WORK\C宁波拆迁\h5_codegit\Ewide.NbzsZheliban\bin\Release\net5.0\Ewide.Nbzs.Entity.pdb
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,208 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "3cavSErWO4NFfmMKlUz4YgJK6Tu5ftpqX+LZxWd1jncD2ai2Uj4kko3U9JQFGx/EFblHKsXrbTlvzoOZm3oTgg==",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\aliyun-net-sdk-core\\1.5.10\\aliyun-net-sdk-core.1.5.10.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\ben.demystifier\\0.4.1\\ben.demystifier.0.4.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\bouncycastle.netcore\\1.8.3\\bouncycastle.netcore.1.8.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\csrediscore\\3.6.6\\csrediscore.3.6.6.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\dapper\\2.0.78\\dapper.2.0.78.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\dapper.contrib\\2.0.78\\dapper.contrib.2.0.78.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\furion.extras.dependencymodel.codeanalysis\\2.18.7\\furion.extras.dependencymodel.codeanalysis.2.18.7.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\google.protobuf\\3.6.1\\google.protobuf.3.6.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4\\1.1.11\\k4os.compression.lz4.1.1.11.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4.streams\\1.1.11\\k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\kendo.dynamiclinqcore\\3.1.1\\kendo.dynamiclinqcore.3.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\magick.net-q16-anycpu\\8.3.1\\magick.net-q16-anycpu.8.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\magick.net.core\\8.3.1\\magick.net.core.8.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster\\7.2.0\\mapster.7.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mapster.dependencyinjection\\1.0.0\\mapster.dependencyinjection.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.9\\microsoft.aspnetcore.authentication.jwtbearer.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.9\\microsoft.aspnetcore.razor.language.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.common\\3.11.0\\microsoft.codeanalysis.common.3.11.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.11.0\\microsoft.codeanalysis.csharp.3.11.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite\\2.2.4\\microsoft.data.sqlite.2.2.4.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite.core\\2.2.4\\microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.9\\microsoft.entityframeworkcore.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.9\\microsoft.entityframeworkcore.abstractions.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.9\\microsoft.entityframeworkcore.analyzers.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.9\\microsoft.entityframeworkcore.relational.5.0.9.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration\\2.0.0\\microsoft.extensions.configuration.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.0.0\\microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.2\\microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.0.0\\microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\mysql.data\\8.0.21\\mysql.data.8.0.21.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\npgsql\\4.1.3.1\\npgsql.4.1.3.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\portable.bouncycastle\\1.8.10\\portable.bouncycastle.1.8.10.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\quartz\\3.3.2\\quartz.3.3.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.aspnetcore\\4.1.0\\serilog.aspnetcore.4.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.hosting\\4.1.2\\serilog.extensions.hosting.4.1.2.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.logging\\3.0.1\\serilog.extensions.logging.3.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.settings.configuration\\3.1.0\\serilog.settings.configuration.3.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.bundle_green\\1.1.12\\sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.core\\1.1.12\\sqlitepclraw.core.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.linux\\1.1.12\\sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.osx\\1.1.12\\sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.v110_xp\\1.1.12\\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3.netstandard11\\1.1.12\\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore\\5.0.3.8\\sqlsugarcore.5.0.3.8.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\ssh.net\\2016.1.0\\ssh.net.2016.1.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\sshnet.security.cryptography\\1.2.0\\sshnet.security.cryptography.1.2.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore\\6.1.5\\swashbuckle.aspnetcore.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.1.5\\swashbuckle.aspnetcore.swagger.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.1.5\\swashbuckle.aspnetcore.swaggergen.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.1.5\\swashbuckle.aspnetcore.swaggerui.6.1.5.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.linq.dynamic.core\\1.2.2\\system.linq.dynamic.core.1.2.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.net.nameresolution\\4.0.0\\system.net.nameresolution.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.text.json\\5.0.2\\system.text.json.5.0.2.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
|
|
||||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
|
|
||||||
"C:\\Users\\z1303\\.nuget\\packages\\uaparser\\3.1.46\\uaparser.3.1.46.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
@@ -7,28 +7,28 @@
|
|||||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
|
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
|
||||||
<title>宁波房屋征收</title>
|
<title>宁波房屋征收</title>
|
||||||
<script>
|
<script>
|
||||||
// function getQueryString(name) {
|
function getQueryString(name) {
|
||||||
// var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
||||||
// var r = window.location.search.substr(1).match(reg);
|
var r = window.location.search.substr(1).match(reg);
|
||||||
// if (r != null) return unescape(r[2]); return null;
|
if (r != null) return unescape(r[2]); return null;
|
||||||
// }
|
}
|
||||||
// console.log('1201-当前页面路径:' + location.href)
|
console.log('1201-当前页面路径:' + location.href)
|
||||||
// var sp = getQueryString('sp');
|
var sp = getQueryString('sp');
|
||||||
// var ticket = getQueryString('ticket');
|
var ticket = getQueryString('ticket');
|
||||||
// if (sp)
|
if (sp)
|
||||||
// location.href = (sp + '&ticket=' + ticket)
|
location.href = (sp + '&ticket=' + ticket)
|
||||||
// //debugger
|
//debugger
|
||||||
// console.log('1201-url中ticket:' + ticket)
|
console.log('1201-url中ticket:' + ticket)
|
||||||
// if (ticket)
|
if (ticket)
|
||||||
// window.sessionStorage.setItem('ticket', ticket)
|
window.sessionStorage.setItem('ticket', ticket)
|
||||||
// else {
|
else {
|
||||||
// if (!window.sessionStorage.getItem('ticket')) {
|
if (!window.sessionStorage.getItem('ticket')) {
|
||||||
// // setTimeout(function () { window.close() }, 10);
|
// setTimeout(function () { window.close() }, 10);
|
||||||
// location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs')
|
location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs')
|
||||||
// //location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs&goto=https://mapi.zjzwfw.gov.cn/web/mgop/gov-open/zj/2001833218/1.0/index.html?debug=true')
|
//location.replace('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs&goto=https://mapi.zjzwfw.gov.cn/web/mgop/gov-open/zj/2001833218/1.0/index.html?debug=true')
|
||||||
// }
|
}
|
||||||
// console.log('有ticket正常进入,' + window.sessionStorage.getItem('ticket'))
|
console.log('有ticket正常进入,' + window.sessionStorage.getItem('ticket'))
|
||||||
// }
|
}
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript" src="https://d.alicdn.com/alilog/mlog/aplus.js?id=202951085"></script>
|
<script type="text/javascript" src="https://d.alicdn.com/alilog/mlog/aplus.js?id=202951085"></script>
|
||||||
<script type="text/javascript" src="//jssdk.yyhj.zjzwfw.gov.cn/jsbridge/v2.0.0/bridge.min.js"></script>
|
<script type="text/javascript" src="//jssdk.yyhj.zjzwfw.gov.cn/jsbridge/v2.0.0/bridge.min.js"></script>
|
||||||
|
|||||||
1
framework
Submodule
1
framework
Submodule
Submodule framework added at a1919c6bec
9
framework/.gitignore
vendored
9
framework/.gitignore
vendored
@@ -1,9 +0,0 @@
|
|||||||
bin/
|
|
||||||
obj/
|
|
||||||
*.user
|
|
||||||
/Publish
|
|
||||||
/packages
|
|
||||||
.vs
|
|
||||||
Logs/
|
|
||||||
Upload
|
|
||||||
dbsettings.Development.json
|
|
||||||
3
framework/.gitmodules
vendored
3
framework/.gitmodules
vendored
@@ -1,3 +0,0 @@
|
|||||||
[submodule "Api/Furion"]
|
|
||||||
path = Api/Furion
|
|
||||||
url = https://gitee.com/dotnetchina/Furion.git
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_code")]
|
|
||||||
[Comment("房屋编码表")]
|
|
||||||
public class BsHouseCode : Core.DEntityBase
|
|
||||||
{
|
|
||||||
[Comment("系统中唯一的房屋编码,生成即不再变更")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
[Required]
|
|
||||||
public string HouseCode { get; set; }
|
|
||||||
|
|
||||||
[Comment("编号")]
|
|
||||||
[MaxLength(3)]
|
|
||||||
[Required]
|
|
||||||
public int No { get; set; }
|
|
||||||
|
|
||||||
[Comment("项目ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string ProjectId { get; set; }
|
|
||||||
|
|
||||||
[Comment("片区ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string ZoneId { get; set; }
|
|
||||||
|
|
||||||
[Comment("详细地址")]
|
|
||||||
[MaxLength(500)]
|
|
||||||
[Required]
|
|
||||||
public string Address { get; set; }
|
|
||||||
|
|
||||||
[Comment("性质")]
|
|
||||||
[Required]
|
|
||||||
public int Type { get; set; }
|
|
||||||
|
|
||||||
[Comment("所属行业")]
|
|
||||||
[Required]
|
|
||||||
public int Industry { get; set; }
|
|
||||||
|
|
||||||
[Comment("坐标-经度")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string Lng { get; set; }
|
|
||||||
|
|
||||||
[Comment("坐标-纬度")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string Lat { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_company")]
|
|
||||||
[Comment("房屋相关单位表")]
|
|
||||||
public class BsHouseCompany : Core.DEntityBase
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 单位类型,多选
|
|
||||||
/// </summary>
|
|
||||||
[Comment("单位类型,多选")]
|
|
||||||
[MaxLength(20)]
|
|
||||||
public string Type { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 单位名称
|
|
||||||
/// </summary>
|
|
||||||
[Comment("单位名称")]
|
|
||||||
[MaxLength(200)]
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 信息
|
|
||||||
/// </summary>
|
|
||||||
[Comment("信息")]
|
|
||||||
public string Info { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,378 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_info")]
|
|
||||||
[Comment("房屋信息表")]
|
|
||||||
public class BsHouseInfo : Core.DEntityBase
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// HouseCode主键ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("bs_house_code主键Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string HouseCodeId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 幢名称
|
|
||||||
/// </summary>
|
|
||||||
[Comment("幢名称")]
|
|
||||||
[MaxLength(255)]
|
|
||||||
public string BuildingName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 土地性质
|
|
||||||
/// </summary>
|
|
||||||
[Comment("土地性质")]
|
|
||||||
public int? LandAttribute { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 结构类型
|
|
||||||
/// </summary>
|
|
||||||
[Comment("结构类型")]
|
|
||||||
public int? StructureType { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 基础情况
|
|
||||||
/// </summary>
|
|
||||||
[Comment("基础情况")]
|
|
||||||
public int? BaseInfo { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 抗震等级
|
|
||||||
/// </summary>
|
|
||||||
[Comment("抗震等级")]
|
|
||||||
public int? SeismicGrade { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 竣工日期
|
|
||||||
/// </summary>
|
|
||||||
[Comment("竣工日期")]
|
|
||||||
public DateTime? CompletedDate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 设计使用年限
|
|
||||||
/// </summary>
|
|
||||||
[Comment("设计使用年限")]
|
|
||||||
public int? UsefulYear { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 总层数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("总层数")]
|
|
||||||
public int? TotalFloor { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上层数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上层数")]
|
|
||||||
public int? LandFloorCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上商业层数开始
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上商业层数开始")]
|
|
||||||
public int? LandBsFloorStart { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上商业层数结束
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上商业层数结束")]
|
|
||||||
public int? LandBsFloorEnd { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上车棚层开始
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上车棚层开始")]
|
|
||||||
public int? LandBikeFloorStart { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上住宅层开始
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上住宅层开始")]
|
|
||||||
public int? LandResidenceFloorStart { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地上住宅层结束
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地上住宅层结束")]
|
|
||||||
public int? LandResidenceFloorEnd { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 地下层数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("地下层数")]
|
|
||||||
public int? UnderFloorCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 总建筑面积
|
|
||||||
/// </summary>
|
|
||||||
[Comment("总建筑面积")]
|
|
||||||
public float? TotalArea { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 有无建筑幕墙
|
|
||||||
/// </summary>
|
|
||||||
[Comment("有无建筑幕墙")]
|
|
||||||
public int? CurtainWall { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 有无面砖
|
|
||||||
/// </summary>
|
|
||||||
[Comment("有无面砖")]
|
|
||||||
public int? FaceBrick { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 有无涂料
|
|
||||||
/// </summary>
|
|
||||||
[Comment("有无涂料")]
|
|
||||||
public int? Coating { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 有无粉刷
|
|
||||||
/// </summary>
|
|
||||||
[Comment("有无粉刷")]
|
|
||||||
public int? Painting { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 电梯
|
|
||||||
/// </summary>
|
|
||||||
[Comment("电梯")]
|
|
||||||
[MaxLength(20)]
|
|
||||||
public string Elevator { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 总户数(户)
|
|
||||||
/// </summary>
|
|
||||||
[Comment("总户数(户)")]
|
|
||||||
public int? HouseHolds { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 房屋单元数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("房屋单元数")]
|
|
||||||
public int? Units { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 各单元每层户数(户)
|
|
||||||
/// </summary>
|
|
||||||
[Comment("各单元每层户数(户)")]
|
|
||||||
public int? UnitFloorHolds { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 建设单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("建设单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string BuildingUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 设计单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("设计单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string DesingerUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 施工单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("施工单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string ConstructionUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 监理单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("监理单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string MonitorUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 产权性质
|
|
||||||
/// </summary>
|
|
||||||
[Comment("产权性质")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string PropertyRights { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 总共套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("总共套数")]
|
|
||||||
public int? HouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 直管公房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("直管公房套数")]
|
|
||||||
public int? StraightHouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 自管公房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("自管公房套数")]
|
|
||||||
public int? SelfHouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 私房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("私房套数")]
|
|
||||||
public int? PrivateHouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 商品房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("商品房套数")]
|
|
||||||
public int? BusinessCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 房改房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("房改房套数")]
|
|
||||||
public int? ChangeHouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 拆迁安置房套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("拆迁安置房套数")]
|
|
||||||
public int? ResettlementHouseCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其它套数
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其它套数")]
|
|
||||||
public int? OtherCount { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 产权单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("产权单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string PropertyUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 物业单位ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("物业单位ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string WuYeUnitId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 图纸资料存档处
|
|
||||||
/// </summary>
|
|
||||||
[Comment("图纸资料存档处")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string DrawingMaterial { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其他图纸存档
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其他图纸存档")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string DrawingMaterialText { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 立项文件
|
|
||||||
/// </summary>
|
|
||||||
[Comment("立项文件")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string AnEntryDocument { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 规划许可
|
|
||||||
/// </summary>
|
|
||||||
[Comment("规划许可")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string PlanningPermission { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 竣工验收备案
|
|
||||||
/// </summary>
|
|
||||||
[Comment("竣工验收备案")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string CompletionRecord { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 监理资料
|
|
||||||
/// </summary>
|
|
||||||
[Comment("监理资料")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string MonitorDocument { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 鉴定报告
|
|
||||||
/// </summary>
|
|
||||||
[Comment("鉴定报告")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string IdentificationReport { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其它资料
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其它资料")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string OtherDocument { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 外立面照片
|
|
||||||
/// </summary>
|
|
||||||
[Comment("外立面照片")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string FacadePhoto { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 房屋等级 1,2,3,4,C,d
|
|
||||||
/// </summary>
|
|
||||||
[Comment("房屋等级 1,2,3,4,C,d")]
|
|
||||||
public int? HouseGrade { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 房屋使用状态
|
|
||||||
/// </summary>
|
|
||||||
[Comment("房屋使用状态")]
|
|
||||||
public int? HouseUsedStatus { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// -1 退回(审核被退回的数据) 1、待建档(需要建档的数据未暂存未保存的)2、暂存(点击了暂存的数据)3、待提交(点击了保存的数据) 5、审核中6、审核通过
|
|
||||||
/// </summary>
|
|
||||||
[Comment("-1 退回(审核被退回的数据) 1、待建档(需要建档的数据未暂存未保存的)2、暂存(点击了暂存的数据)3、待提交(点击了保存的数据) 5、审核中6、审核通过")]
|
|
||||||
[Required]
|
|
||||||
public int State { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 调查登记机构
|
|
||||||
/// </summary>
|
|
||||||
[Comment("调查登记机构")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string InvestigateAgency { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 纸质资料调查人
|
|
||||||
/// </summary>
|
|
||||||
[Comment("纸质资料调查人")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string InvestigateUser { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 纸质资料审核人
|
|
||||||
/// </summary>
|
|
||||||
[Comment("纸质资料审核人")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string OfflineAuditor { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 主管部门
|
|
||||||
/// </summary>
|
|
||||||
[Comment("主管部门")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string CompetentDepartment { get; set; }
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_log")]
|
|
||||||
[Comment("房屋流转日志")]
|
|
||||||
public class BsHouseLog : Core.DEntityBase
|
|
||||||
{
|
|
||||||
[Comment("房屋编码Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string HouseCodeId { get; set; }
|
|
||||||
|
|
||||||
[Comment("目标处理人Id,可多个")]
|
|
||||||
public string TargetUserIds { get; set; }
|
|
||||||
|
|
||||||
[Comment("步骤类型")]
|
|
||||||
public HouseLogType Type { get; set; }
|
|
||||||
|
|
||||||
[Comment("状态")]
|
|
||||||
public HouseLogStatus Status { get; set; }
|
|
||||||
|
|
||||||
[Comment("备注信息")]
|
|
||||||
public string Remark { get; set; }
|
|
||||||
|
|
||||||
[Comment("完成时间")]
|
|
||||||
public DateTime? FinishedTime { get; set; }
|
|
||||||
|
|
||||||
[Comment("完成者Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string FinishedUserId { get; set; }
|
|
||||||
|
|
||||||
[Comment("完成者名称")]
|
|
||||||
[MaxLength(20)]
|
|
||||||
public string FinishedUserName { get; set; }
|
|
||||||
|
|
||||||
[Comment("排序")]
|
|
||||||
public int Sort { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_member_relation")]
|
|
||||||
[Comment("房屋与人员关联表")]
|
|
||||||
public class BsHouseMemberRelation : Core.DEntityBase
|
|
||||||
{
|
|
||||||
[Comment("sys_user主键Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string SysUserId { get; set; }
|
|
||||||
|
|
||||||
[Comment("bs_house_code主键Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string HouseCodeId { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Ewide.Application.Entity
|
|
||||||
{
|
|
||||||
[Table("bs_house_projectinfo")]
|
|
||||||
[Comment("项目表")]
|
|
||||||
public class BsHouseProjectInfo : Core.DEntityBase
|
|
||||||
{
|
|
||||||
[Comment("名称")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
[Required]
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
[Comment("备注")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string Note { get; set; }
|
|
||||||
|
|
||||||
[Comment("排序")]
|
|
||||||
[Required]
|
|
||||||
public int Sort { get; set; }
|
|
||||||
|
|
||||||
[Comment("区域ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string AreaCode { get; set; }
|
|
||||||
|
|
||||||
[Comment("类型")]
|
|
||||||
[Required]
|
|
||||||
public int Type { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,266 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_task")]
|
|
||||||
[Comment("房屋巡查任务表")]
|
|
||||||
public class BsHouseTask : Core.DEntityBase
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// bs_house_code主键Id
|
|
||||||
/// </summary>
|
|
||||||
[Comment("bs_house_code主键Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
[Required]
|
|
||||||
public string HouseCodeId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 巡查日期
|
|
||||||
/// </summary>
|
|
||||||
[Comment("巡查日期")]
|
|
||||||
public DateTime? PatrolDate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 巡查人姓名
|
|
||||||
/// </summary>
|
|
||||||
[Comment("巡查人姓名")]
|
|
||||||
[MaxLength(50)]
|
|
||||||
public string PatrolUser { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 沉降倾斜
|
|
||||||
/// </summary>
|
|
||||||
[Comment("沉降倾斜")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string SettlementTilt { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 沉降倾斜附件
|
|
||||||
/// </summary>
|
|
||||||
[Comment("沉降倾斜附件")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string SettlementTiltFiles { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其他情况
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其他情况")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string OtherInfo { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其他情况附件
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其他情况附件")]
|
|
||||||
[MaxLength(2000)]
|
|
||||||
public string OtherInfoFiles { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 初始等级
|
|
||||||
/// </summary>
|
|
||||||
[Comment("初始等级")]
|
|
||||||
public int? InitGrade { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 损坏等级
|
|
||||||
/// </summary>
|
|
||||||
[Comment("损坏等级")]
|
|
||||||
public int? DamageGrade { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 综合等级
|
|
||||||
/// </summary>
|
|
||||||
[Comment("综合等级")]
|
|
||||||
public int? ComprehensiveGrade { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 房屋场地
|
|
||||||
/// </summary>
|
|
||||||
[Comment("房屋场地")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string HouseSite { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 相邻施工
|
|
||||||
/// </summary>
|
|
||||||
[Comment("相邻施工")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string AdjacentConstruction { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 化学侵蚀
|
|
||||||
/// </summary>
|
|
||||||
[Comment("化学侵蚀")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string ChemicalErosion { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 结构拆改
|
|
||||||
/// </summary>
|
|
||||||
[Comment("结构拆改")]
|
|
||||||
public int? StructuralDismantling { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 加层改造
|
|
||||||
/// </summary>
|
|
||||||
[Comment("加层改造")]
|
|
||||||
public int? AddingLayer { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 修缮加固
|
|
||||||
/// </summary>
|
|
||||||
[Comment("修缮加固")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string RepairAndReinforce { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 历史灾害
|
|
||||||
/// </summary>
|
|
||||||
[Comment("历史灾害")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string HistoricalCalamity { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 使用功能变更
|
|
||||||
/// </summary>
|
|
||||||
[Comment("使用功能变更")]
|
|
||||||
[MaxLength(100)]
|
|
||||||
public string FunctionalChange { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 其他调查内容
|
|
||||||
/// </summary>
|
|
||||||
[Comment("其他调查内容")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string OtherContents { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 主要安全隐患综述
|
|
||||||
/// </summary>
|
|
||||||
[Comment("主要安全隐患综述")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string MainSafety { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 处理意见
|
|
||||||
/// </summary>
|
|
||||||
[Comment("处理意见")]
|
|
||||||
public int? HandlingOpinion { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 处理意见备注
|
|
||||||
/// </summary>
|
|
||||||
[Comment("处理意见备注")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string HandlingOpinionRemark { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 整改情况
|
|
||||||
/// </summary>
|
|
||||||
[Comment("整改情况")]
|
|
||||||
public int? RectifyAndReform { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 整改情况备注
|
|
||||||
/// </summary>
|
|
||||||
[Comment("整改情况备注")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string RectifyAndReformRemark { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 巡查结果:1正常,-1异常
|
|
||||||
/// </summary>
|
|
||||||
[Comment("巡查结果:1正常,-1异常")]
|
|
||||||
public int? PatrolResult { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 巡查异常描述
|
|
||||||
/// </summary>
|
|
||||||
[Comment("巡查异常描述")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string PatrolResultRemark { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 任务人员ID
|
|
||||||
/// </summary>
|
|
||||||
[Comment("任务人员ID")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string UserID { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 任务截止时间
|
|
||||||
/// </summary>
|
|
||||||
[Comment("任务截止时间")]
|
|
||||||
public DateTime? EndTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 是否过期
|
|
||||||
/// </summary>
|
|
||||||
[Comment("是否过期")]
|
|
||||||
public bool? IsDelay { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// -1:退回0:待处理1:保存待提交2:待审核3:审核通过
|
|
||||||
/// </summary>
|
|
||||||
[Comment("-1:退回0:待处理1:保存待提交2:待审核6:审核通过")]
|
|
||||||
public int Status { get; set; } = 0;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 0:建档任务1:系统派发的巡查任务2:主动巡查任务
|
|
||||||
/// </summary>
|
|
||||||
[Comment("0:建档任务1:系统派发的巡查任务2:主动巡查任务")]
|
|
||||||
public int? TaskType { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上报街道
|
|
||||||
/// </summary>
|
|
||||||
[Comment("上报街道")]
|
|
||||||
public int? ReportRoad { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上报街道时间
|
|
||||||
/// </summary>
|
|
||||||
[Comment("上报街道时间")]
|
|
||||||
public DateTime? ReportRoadTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上报区住建
|
|
||||||
/// </summary>
|
|
||||||
[Comment("上报区住建")]
|
|
||||||
public int? ReportArea { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上报区住建时间
|
|
||||||
/// </summary>
|
|
||||||
[Comment("上报区住建时间")]
|
|
||||||
public DateTime? ReportAreaTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上报备注
|
|
||||||
/// </summary>
|
|
||||||
[Comment("上报备注")]
|
|
||||||
[MaxLength(1000)]
|
|
||||||
public string ReportRemark { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 提交时间
|
|
||||||
/// </summary>
|
|
||||||
[Comment("提交时间")]
|
|
||||||
public DateTime? SubmitTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 最后提交时间
|
|
||||||
/// </summary>
|
|
||||||
[Comment("最后提交时间")]
|
|
||||||
public DateTime? LastSubmitTime { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 是否有效
|
|
||||||
/// </summary>
|
|
||||||
[Comment("是否有效")]
|
|
||||||
public bool IsEnabled { get; set; } = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
|
|
||||||
namespace Ewide.Application
|
|
||||||
{
|
|
||||||
[Table("bs_house_task_check_record")]
|
|
||||||
[Comment("房屋任务审核记录表")]
|
|
||||||
public class BsHouseTaskCheckRecord : Core.DEntityBase
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 任务Id
|
|
||||||
/// </summary>
|
|
||||||
[Comment("任务Id")]
|
|
||||||
[MaxLength(36)]
|
|
||||||
public string TaskId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 通过1;退回-1
|
|
||||||
/// </summary>
|
|
||||||
[Comment("通过3;退回-1")]
|
|
||||||
public int PassOrBack { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 审核内容
|
|
||||||
/// </summary>
|
|
||||||
[Comment("审核内容")]
|
|
||||||
[MaxLength(500)]
|
|
||||||
public string Content { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user