Compare commits

...

21 Commits

Author SHA1 Message Date
47174c95b4 替换埋点使用 2022-11-28 16:08:55 +08:00
范露尧
44e24a52d3 1.进入老年模式有2个按钮,最下方那个删掉吧。。2.显示的姓名第一个字脱敏处理 2022-08-18 16:15:30 +08:00
范露尧
ddce3eb13e update gitignore 2022-08-18 09:49:18 +08:00
Wjl
a58143f70d 非住宅样式问题 2021-12-30 14:50:18 +08:00
路 范
f991f07460 update 测试数据 2021-12-30 14:04:31 +08:00
路 范
b1362f6e17 更新正式版本 2021-12-29 11:32:54 +08:00
Wjl
fabb68741d 前端bug修改 2021-12-22 17:04:13 +08:00
Wjl
ad947e2e4e 去除前端element 2021-12-22 14:03:31 +08:00
路 范
1cbe89979d bugfix 修复字体整体变小bug 2021-12-21 17:22:06 +08:00
路 范
ed07172d7c update :查找ios端问题 2021-12-21 14:21:09 +08:00
路 范
9fc6339d6f update 后端接口修改 2021-12-16 17:53:38 +08:00
Wjl
93809e9c17 Merge branch 'master' of http://118.178.224.202:3000/ewide/zsxt_nbzs_h5 2021-12-16 14:49:00 +08:00
Wjl
a21290bc14 老年人部分样式修改 2021-12-16 14:46:45 +08:00
路 范
7c764fb1e0 Merge branch 'master' of http://118.178.224.202:3000/ewide/zsxt_nbzs_h5 2021-12-16 11:33:15 +08:00
路 范
d058c3cad3 goto和sp参数处理 2021-12-16 11:31:29 +08:00
Wjl
c38bb2e96f JQ修改为vue 2021-12-16 11:25:04 +08:00
路 范
4f902aecdd 测试数据 2021-12-15 10:48:22 +08:00
路 范
93d73c4c57 调试ios白屏问题 2021-12-15 09:23:01 +08:00
279b46198b 取消html代码注释 2021-12-10 15:32:52 +08:00
ec0a8d9b79 Merge branch 'master' of http://118.178.224.202:3000/ewide/zsxt_nbzs_h5 2021-12-10 15:31:21 +08:00
d8cfe8bbe5 增加评估公司,合计安置面积,修改图标,取消部分内容 2021-12-10 15:31:00 +08:00
1091 changed files with 46603 additions and 351647 deletions

View File

@@ -1,6 +0,0 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

Binary file not shown.

Binary file not shown.

View File

@@ -326,11 +326,11 @@ namespace Ewide.Nbzs.BackWorkerService
}
private List<Fhpgs> GetFHPGData()
{
return db_Zlb_Conn.Ado.SqlQuery<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsPublic=1 union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsPublic=1 ;");
return db_Zlb_Conn.Ado.SqlQuery<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type,p.EvaluationCompany from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type,p.EvaluationCompany from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 ;");
}
private List<Bcxy> GetBcxyData()
{
return db_Zlb_Conn.Ado.SqlQuery<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 ; ");
return db_Zlb_Conn.Ado.SqlQuery<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type,TotalAllocationArea from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type,TotalAllocationArea from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 ; ");
}
}
public class PushResult

View File

@@ -17,6 +17,7 @@ namespace Ewide.Nbzs.Entity.Extends
public string dcbId { get; set; }
public string PrjId { get; set; }
public string ExpropriatedCardNo { get; set; }
}
public class Fhpgs
{
@@ -30,6 +31,7 @@ namespace Ewide.Nbzs.Entity.Extends
public string CreateTime { get; set; }
public string CreateUserName { get; set; }
public string Type { get; set; }
public string EvaluationCompany { get; set; }
}
public class Bcxy
@@ -45,6 +47,7 @@ namespace Ewide.Nbzs.Entity.Extends
public string countValue { get; set; }
public string SignTime { get; set; }
public string Type { get; set; }
public string TotalAllocationArea { get; set; }
}

View File

@@ -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>

View File

@@ -150,7 +150,7 @@ namespace Ewide.NbzsZheliban.Service
{
var InvestigateTableID_param = "'" + string.Join("','", list_dcbs.Select(p => p.dcbId)) + "'";
//分户评估
return await db.Ado.SqlQueryAsync<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsPublic=1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsPublic=1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ) ;");
return await db.Ado.SqlQueryAsync<Fhpgs>("select d.id,e.ProjectId as PrjId ,d.AssessmentNo,e.HouseAddress,d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,1 type,p.EvaluationCompany from InvestigateTable_Assessment d inner join InvestigateTable e on d.InvestigateTableId=e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,e.ProjectId as PrjId ,AssessmentNo, e.HouseAddress, d.countValue,e.id dcbId,d.CreateTime,d.CreateUserName,2 type,p.EvaluationCompany from NonInvestigateTable_Assessment d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID inner join Projects p on e.ProjectId=p.id where d.IsPublic=1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ) ;");
}
}
/// <summary>
@@ -167,7 +167,7 @@ namespace Ewide.NbzsZheliban.Service
{
var InvestigateTableID_param = "'" + string.Join("','", list_dcbs.Select(p => p.dcbId)) + "'";
//补偿协议
return await db.Ado.SqlQueryAsync<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ); ");
return await db.Ado.SqlQueryAsync<Bcxy>("select d.id,isnull(d.CollectDecisionNoHeadName,'')+isnull(d.No1,'')+'-'+isnull(d.No2,'')+(case when (d.No3 is null or d.No3 = '') then '' else ('-'+d.No3) end ) XyNo,d.SwitchProductionWay,e.HouseAddress,d.SummationShouldCompensateMoney,e.ProjectId as PrjId,e.id dcbId,d.SignTime,1 type,TotalAllocationArea from ResidentialAgreement d inner join InvestigateTable e on d.InvestigateTableId=e.ID where d.IsInRecords = 1 and d.InvestigateTableID in ( " + InvestigateTableID_param + " ) union all select d.id,isnull(d.CollectDecisionNoHeadName, '') + isnull(d.No2, '') + '-' + isnull(d.No3, '') XyNo , d.SwitchProductionWay, e.HouseAddress, d.SummationShouldCompensateMoney, e.ProjectId as PrjId,e.id dcbId,d.SignTime,2 type,TotalAllocationArea from NonResidentialAgreement d inner join NonResidentialInvestigateTable e on d.NonInvestigateTableID = e.ID where d.IsInRecords = 1 and d.NonInvestigateTableID in ( " + InvestigateTableID_param + " ); ");
}
}
/// <summary>
@@ -241,7 +241,7 @@ namespace Ewide.NbzsZheliban.Service
{
PrjList = list_projects,
IdCard = cardno,
UserName = username,
UserName = "*" + username.Substring(1, username.Length - 1),
PoliciesRegulationsLists = new Nbzs.Entity.Extends.PoliciesRegulations { List = list_PoliciesRegulations, TotalCount = list_PoliciesRegulations.Count }
};
_cache.Set("IndexData-" + cardno, h5IndexModel, new TimeSpan(0, 1, 30));

View File

@@ -48,6 +48,47 @@ namespace Ewide.NbzsZheliban.Tools
Stream s = response.GetResponseStream();
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();
return strValue;
}

File diff suppressed because it is too large Load Diff

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

File diff suppressed because it is too large Load Diff

View File

@@ -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; }
}
}

View File

@@ -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个字符"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

File diff suppressed because it is too large Load Diff

View File

@@ -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; }
}
}

View File

@@ -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个字符"
}
}

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

View File

@@ -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 类生成。

View File

@@ -1 +0,0 @@
bda67fe14f40b15fe7bfa74fbb274fd21fb6cbb5

View File

@@ -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\

View File

@@ -1 +0,0 @@
a934c94fb064d6bd60c0741398e1a004ca47a59e

View File

@@ -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

View File

@@ -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"
}
}
}
}
}

View File

@@ -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>

View File

@@ -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>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

View File

@@ -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 类生成。

View File

@@ -1 +0,0 @@
2b86f477b8e1358f8acd0f034974c2944e2567c5

View File

@@ -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\

View File

@@ -1 +0,0 @@
bb13473e3cc2466fdcf53d235e9bb0ae703fada9

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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": []
}

View File

@@ -10,11 +10,11 @@
],
"plugins": [
"transform-vue-jsx",
"transform-runtime",
["import", {
"transform-runtime"
/* ["import", {
"libraryName": "vant",
"libraryDirectory": "es",
"style": true
}]
}] */
]
}

View File

@@ -1,11 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0"
/>
<meta name="viewport"
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0" />
<title>宁波房屋征收</title>
<script>
function getQueryString(name) {
@@ -13,39 +12,37 @@
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
//debugger
console.log('1201-当前页面路径:' + location.href)
var sp = getQueryString('sp');
var ticket = getQueryString('ticket');
console.log('1201-ticket' + ticket)
if (sp)
location.href = (sp + '&ticket=' + ticket)
//debugger
console.log('1201-url中ticket' + ticket)
if (ticket)
window.sessionStorage.setItem('ticket', ticket)
else {
if (window.sessionStorage.getItem('ticket') == null) {
setTimeout(function () { window.close() }, 10);
//window.open('https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs')
if (!window.sessionStorage.getItem('ticket')) {
// 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&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'))
}
</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="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>
<!-- 引入ZWJSBridge -->
<script
type="text/javascript"
src="//assets.zjzwfw.gov.cn/assets/ZWJSBridge/1.0.1/zwjsbridge.js"
></script>
</head>
<script type="text/javascript" src="//assets.zjzwfw.gov.cn/assets/ZWJSBridge/1.0.1/zwjsbridge.js"></script>
<script type="text/javascript" src="//assets.zjzwfw.gov.cn/assets/zwlog/1.0.0/zwlog.js"></script>
<body>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
(function(w, d, s, q, i) {
(function (w, d, s, q, i) {
w[q] = w[q] || [];
var f = d.getElementsByTagName(s)[0];
var j = d.createElement(s);
@@ -73,19 +70,20 @@
arguments: ["aplus-waiting", "MAN"]
});
// 单页应用路由切换后 或 在异步获取到 pv 日志所需的参数后再执行 sendPV
aplus_queue.push({
action: "aplus.sendPV",
arguments: [
{
is_auto: false
},
{
isMini: true,
miniAppId: "2001833218", //'应用开发管理平台-应用 ID
miniAppName: "房屋征收"
}
]
});
// aplus_queue.push({
// action: "aplus.sendPV",
// arguments: [
// {
// is_auto: false
// },
// {
// isMini: true,
// miniAppId: "2001833218", //'应用开发管理平台-应用 ID
// miniAppName: "房屋征收"
// }
// ]
// });
</script>
</body>
</body>
</html>

View File

@@ -0,0 +1,77 @@
{
"name": "sunshine_levy",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js"
},
"dependencies": {
"@aligov/jssdk-mgop": "^3.0.0",
"axios": "^0.21.4",
"element-ui": "^2.15.6",
"es6-promise": "^4.2.8",
"html2canvas": "^1.3.2",
"js-md5": "^0.7.3",
"less": "^4.1.1",
"less-loader": "^4.1.0",
"lib-flexible": "^0.3.2",
"px2rem-loader": "^0.1.9",
"vant": "^2.12.27",
"vue": "^2.5.2",
"vue-pdf": "^4.3.0",
"vue-router": "^3.0.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-pxtorem": "^6.0.0",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -12,9 +12,8 @@
"dependencies": {
"@aligov/jssdk-mgop": "^3.0.0",
"axios": "^0.21.4",
"element-ui": "^2.15.6",
"es6-promise": "^4.2.8",
"html2canvas": "^1.3.2",
"jquery": "^3.6.0",
"js-md5": "^0.7.3",
"less": "^4.1.1",
"less-loader": "^4.1.0",

View File

@@ -26,59 +26,88 @@
>
<router-view />
</van-pull-refresh>
<div class="bottomContent">
<div :class="mode ? 'old_bottomContent' : 'bottomContent'">
<p>本服务由浙江政务服务网宁波市住房保障和房屋征收管理中心提供</p>
<p>
服务咨询热线<b>
<a href="javascript:;" @click="callphone('0574-88086606')"
>0574-88086606</a
<a href="javascript:;" @click="callphone('0574-89180948')"
>0574-89180948</a
></b
>
</p>
<div v-if="mode === true" class="logout" @click="logout">
<!-- <div>
<div v-if="mode" class="old_logout" @click="logout">
<span>退出老年模式</span>
</div>
<div v-else class="logout" @click="toOlderMode">
<div v-else class="logout" @click="logout">
<span>进入老年模式</span>
</div>
</div> -->
</div>
</div>
</template>
<script>
import { recoverStyle2, changeStyle1 } from "@/olderMode/1.js";
export default {
/* import { recoverStyle2, changeStyle1 } from "@/olderMode/1.js";
*/ export default {
name: "App",
data() {
return {
mode: false,
mode: "",
isLoading: true,
show: true
show: true,
};
},
created() {
if (sessionStorage.getItem("mode") == "older") {
this.mode = true;
} else {
this.mode = false;
}
this.mode = this.$root.mode; //调用全局变量mode中的数据。
// ZWJSBridge.getUiStyle({})
// .then((result) => {
// switch (result.uiStyle) {
// case "normal":
// setUiStyle("标准模式");
// this.mode = this.$root.mode = false;
// break;
// case "elder":
// setUiStyle("适老模式");
// this.mode = this.$root.mode = true;
// break;
// default:
// setUiStyle("default");
// }
// console.log(result);
// })
// //浙里办APP 6.11.0 版本以下版本标准模式兼容
// .catch((error) => {
// setUiStyle("catch 标准模式兼容");
// console.log(error);
// });
console.log("得到的身份判断条件", this.mode);
if (localStorage.getItem("overlay")) {
this.show = false;
}
},
mounted() {},
computed: {
watchMode() {
return this.$root.mode;
},
},
watch: {
watchMode(val, oldVal) {
console.log("成功测试", val);
this.mode = val;
},
},
methods: {
logout() {
sessionStorage.setItem("mode", "normal");
this.mode = false;
recoverStyle2();
},
toOlderMode() {
this.mode = !this.mode;
if (this.mode) {
sessionStorage.setItem("mode", "older");
this.mode = true;
changeStyle1();
} else {
sessionStorage.setItem("mode", "normal");
}
this.$root.mode = this.mode;
},
onRefresh() {
this.$children[0].$children[0].onInit();
@@ -91,16 +120,16 @@ export default {
},
callphone(phonenumber) {
ZWJSBridge.phoneCall({
corpId: phonenumber
corpId: phonenumber,
})
.then(result => {
.then((result) => {
console.log(result);
})
.catch(error => {
.catch((error) => {
console.log(error);
});
}
}
},
},
};
</script>
<style lang="less" scoped>
@@ -108,7 +137,7 @@ export default {
font-family: pingfang, SF UI Text, Roboto;
font-size: 14px;
min-height: 100%;
padding-bottom: 128px;
padding-bottom: 50px;
position: relative;
box-sizing: border-box;
background: #f6f7f8;
@@ -177,8 +206,10 @@ export default {
}
}
.bottomContent {
position: absolute;
bottom: 10px;
display: flex;
flex-direction: column;
/* position: absolute;
bottom: 10px; */
text-align: center;
width: 100%;
font-size: 10px;
@@ -201,15 +232,37 @@ export default {
}
}
}
// 老年化
.old_bottomContent {
font-size: 18px !important;
/* position: absolute;
bottom: 10px; */
display: flex;
flex-direction: column;
text-align: center;
width: 100%;
font-size: 18px;
p {
/* margin: 0;
line-height: 14px; */
line-height: 25px !important;
margin: 10px 0 0 !important;
}
b {
color: #5d8cbc;
}
.old_logout {
padding: 20px 0 10px;
span {
font-size: 20px;
height: 19px;
color: #fefefe;
background: red;
padding: 0 10px;
}
}
}
.old_app {
/* .old_app {
padding-bottom: 100px !important;
}
.old_app2 {
@@ -220,5 +273,5 @@ export default {
}
.old_app3 {
padding-bottom: 48px !important;
}
} */
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 B

After

Width:  |  Height:  |  Size: 15 KiB

Some files were not shown because too many files have changed in this diff Show More