Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
Overview
Overview
Details
Activity
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
pseer
gxpt_ht
Commits
36d97a0a
Commit
36d97a0a
authored
Aug 08, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日志排序
parent
f3a86057
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
1 deletions
+5
-1
DurationLogController.java
...va/share/web/controller/system/DurationLogController.java
+1
-1
BalanceLogMapper.xml
...tem/src/main/resources/mapper/system/BalanceLogMapper.xml
+1
-0
DurationLogMapper.xml
...em/src/main/resources/mapper/system/DurationLogMapper.xml
+1
-0
IntegralLogMapper.xml
...em/src/main/resources/mapper/system/IntegralLogMapper.xml
+1
-0
MemberProgressLogMapper.xml
.../main/resources/mapper/system/MemberProgressLogMapper.xml
+1
-0
No files found.
share-front/src/main/java/share/web/controller/system/DurationLogController.java
View file @
36d97a0a
...
...
@@ -21,7 +21,7 @@ import java.util.List;
* @date 2024-06-24
*/
@RestController
@RequestMapping
(
"/
system/
durationLog"
)
@RequestMapping
(
"/durationLog"
)
public
class
DurationLogController
extends
BaseController
{
@Autowired
private
DurationLogService
durationLogService
;
...
...
share-system/src/main/resources/mapper/system/BalanceLogMapper.xml
View file @
36d97a0a
...
...
@@ -67,6 +67,7 @@
<if
test=
"operationTime != null "
>
and b.operation_time = #{operationTime}
</if>
<if
test=
"isDelete != null "
>
and b.is_delete = #{isDelete}
</if>
</where>
ORDER BY b.operation_time DESC
</select>
<select
id=
"selectBalanceLogById"
parameterType=
"Long"
resultMap=
"BalanceLogResult"
>
...
...
share-system/src/main/resources/mapper/system/DurationLogMapper.xml
View file @
36d97a0a
...
...
@@ -67,6 +67,7 @@
<if
test=
"operationTime != null "
>
and d.operation_time = #{operationTime}
</if>
<if
test=
"isDelete != null "
>
and d.is_delete = #{isDelete}
</if>
</where>
ORDER BY d.operation_time DESC
</select>
<select
id=
"selectDurationLogById"
parameterType=
"Long"
resultMap=
"DurationLogResult"
>
...
...
share-system/src/main/resources/mapper/system/IntegralLogMapper.xml
View file @
36d97a0a
...
...
@@ -67,6 +67,7 @@
<if
test=
"operationTime != null "
>
and i.operation_time = #{operationTime}
</if>
<if
test=
"isDelete != null "
>
and i.is_delete = #{isDelete}
</if>
</where>
ORDER BY i.operation_time DESC
</select>
<select
id=
"selectIntegralLogById"
parameterType=
"Long"
resultMap=
"IntegralLogResult"
>
...
...
share-system/src/main/resources/mapper/system/MemberProgressLogMapper.xml
View file @
36d97a0a
...
...
@@ -70,6 +70,7 @@
<if
test=
"operationTime != null "
>
and m.operation_time = #{operationTime}
</if>
<if
test=
"isDelete != null "
>
and m.is_delete = #{isDelete}
</if>
</where>
ORDER BY m.operation_time DESC
</select>
<select
id=
"selectMemberProgressLogById"
parameterType=
"Long"
resultMap=
"MemberProgressLogResult"
>
...
...
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