Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
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
liudong1993
huatu_API
Commits
1fd66b99
Commit
1fd66b99
authored
Aug 28, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1751114d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
FinanceInfoService.cs
REBORN.Services.FinanceService/FinanceInfoService.cs
+2
-2
No files found.
REBORN.Services.FinanceService/FinanceInfoService.cs
View file @
1fd66b99
...
...
@@ -1018,9 +1018,9 @@ namespace REBORN.Services.FinanceService
list
=
list
.
Where
(
x
=>
x
.
Value
!=
"11"
&&
x
.
Value
!=
"12"
&&
x
.
Value
!=
"13"
&&
x
.
Value
!=
"14"
&&
x
.
Value
!=
"3"
).
ToList
();
int
MaxId
=
list
.
Max
(
x
=>
Convert
.
ToInt32
(
x
.
Value
))
+
1
;
var
SortList
=
list
.
Where
(
x
=>
x
.
Value
==
"15"
).
ToList
();
SortList
.
AddRange
(
list
.
Where
(
x
=>
(
",1,2,3,4,5,6,"
).
Contains
(
x
.
Value
)).
OrderBy
(
x
=>
Convert
.
ToInt32
(
x
.
Value
)).
ToList
());
SortList
.
AddRange
(
list
.
Where
(
x
=>
(
",1,2,3,4,5,6,"
).
Contains
(
","
+
x
.
Value
+
","
)).
OrderBy
(
x
=>
Convert
.
ToInt32
(
x
.
Value
)).
ToList
());
SortList
.
AddRange
(
list
.
Where
(
x
=>
x
.
Value
==
"16"
).
ToList
());
SortList
.
AddRange
(
list
.
Where
(
x
=>
(
",9,10,"
).
Contains
(
x
.
Value
)).
OrderBy
(
x
=>
Convert
.
ToInt32
(
x
.
Value
)).
ToList
());
SortList
.
AddRange
(
list
.
Where
(
x
=>
(
",9,10,"
).
Contains
(
","
+
x
.
Value
+
","
)).
OrderBy
(
x
=>
Convert
.
ToInt32
(
x
.
Value
)).
ToList
());
list
=
SortList
;
foreach
(
var
item
in
list
)
{
...
...
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