Commit 206ed886 authored by 黄奎's avatar 黄奎

页面修改

parent b5109042
[*.cs]
# IDE1006: 命名样式
dotnet_diagnostic.IDE1006.severity = none
# IDE0059: 不需要赋值
csharp_style_unused_value_assignment_preference = discard_variable:none
...@@ -5187,11 +5187,11 @@ namespace Edu.Module.User ...@@ -5187,11 +5187,11 @@ namespace Edu.Module.User
/// <returns></returns> /// <returns></returns>
public bool SetSignIn(Rb_Workflow_SignIn_Extend dmodel) public bool SetSignIn(Rb_Workflow_SignIn_Extend dmodel)
{ {
List<string> imgList = new List<string>(); ImageOperation(dmodel.Images, out List<string> imgList);
ImageOperation(dmodel.Images, out imgList);
dmodel.Image = JsonConvert.SerializeObject(imgList); dmodel.Image = JsonConvert.SerializeObject(imgList);
if (dmodel.Id > 0) if (dmodel.Id > 0)
{//修改 {
//修改
IDictionary<string, object> fileds = new Dictionary<string, object> IDictionary<string, object> fileds = new Dictionary<string, object>
{ {
{ nameof(Rb_Workflow_SignIn_Extend.Image), dmodel.Image }, { nameof(Rb_Workflow_SignIn_Extend.Image), dmodel.Image },
......
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
<EmbeddedResource Remove="Properties\PublishProfiles\**" /> <EmbeddedResource Remove="Properties\PublishProfiles\**" />
<None Remove="Properties\PublishProfiles\**" /> <None Remove="Properties\PublishProfiles\**" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="JWT" Version="5.3.1" /> <PackageReference Include="JWT" Version="5.3.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
......
...@@ -45,7 +45,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Finance", "Edu.M ...@@ -45,7 +45,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Finance", "Edu.M
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SystemSerivce", "SystemSerivce", "{5B0BC66C-B15F-4174-8966-0968C61F816F}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SystemSerivce", "SystemSerivce", "{5B0BC66C-B15F-4174-8966-0968C61F816F}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.EducationCore", "Edu.EducationCore\Edu.EducationCore.csproj", "{FF7B1BD4-0F06-4D22-91EB-9140E65A87AE}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.EducationCore", "Edu.EducationCore\Edu.EducationCore.csproj", "{FF7B1BD4-0F06-4D22-91EB-9140E65A87AE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2A862DEF-9334-4D08-BAFE-55AE80228E2E}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment