Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
206ed886
Commit
206ed886
authored
Dec 24, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
b5109042
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
16 deletions
+31
-16
.editorconfig
.editorconfig
+7
-0
WorkFlowModule.cs
Edu.Module.User/WorkFlowModule.cs
+15
-15
Edu.WebApi.csproj
Edu.WebApi/Edu.WebApi.csproj
+3
-0
education.sln
education.sln
+6
-1
No files found.
.editorconfig
0 → 100644
View file @
206ed886
[*.cs]
# IDE1006: 命名样式
dotnet_diagnostic.IDE1006.severity = none
# IDE0059: 不需要赋值
csharp_style_unused_value_assignment_preference = discard_variable:none
Edu.Module.User/WorkFlowModule.cs
View file @
206ed886
...
...
@@ -5187,25 +5187,25 @@ namespace Edu.Module.User
/// <returns></returns>
public
bool
SetSignIn
(
Rb_Workflow_SignIn_Extend
dmodel
)
{
List
<
string
>
imgList
=
new
List
<
string
>();
ImageOperation
(
dmodel
.
Images
,
out
imgList
);
ImageOperation
(
dmodel
.
Images
,
out
List
<
string
>
imgList
);
dmodel
.
Image
=
JsonConvert
.
SerializeObject
(
imgList
);
if
(
dmodel
.
Id
>
0
)
{
//修改
{
//修改
IDictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>
{
{
nameof
(
Rb_Workflow_SignIn_Extend
.
Image
),
dmodel
.
Image
},
{
nameof
(
Rb_Workflow_SignIn_Extend
.
Remarks
),
dmodel
.
Remarks
}
};
{
{
nameof
(
Rb_Workflow_SignIn_Extend
.
Image
),
dmodel
.
Image
},
{
nameof
(
Rb_Workflow_SignIn_Extend
.
Remarks
),
dmodel
.
Remarks
}
};
IList
<
WhereHelper
>
whereHelpers
=
new
List
<
WhereHelper
>
{
new
WhereHelper
()
{
FiledName
=
nameof
(
Rb_Workflow_SignIn_Extend
.
Id
),
FiledValue
=
dmodel
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
{
new
WhereHelper
()
{
FiledName
=
nameof
(
Rb_Workflow_SignIn_Extend
.
Id
),
FiledValue
=
dmodel
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
return
SignInModule
.
Update
(
fileds
,
whereHelpers
);
}
else
...
...
Edu.WebApi/Edu.WebApi.csproj
View file @
206ed886
...
...
@@ -14,6 +14,9 @@
<EmbeddedResource Remove="Properties\PublishProfiles\**" />
<None Remove="Properties\PublishProfiles\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JWT" Version="5.3.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
...
...
education.sln
View file @
206ed886
...
...
@@ -45,7 +45,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.Finance", "Edu.M
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SystemSerivce", "SystemSerivce", "{5B0BC66C-B15F-4174-8966-0968C61F816F}"
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
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment