Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
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
fulixin
dsk-operate-sys-cscec
Commits
dd169a86
Commit
dd169a86
authored
Aug 25, 2023
by
lcl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
u
parent
8a9d34de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
BusinessFollowRecordMapper.xml
.../resources/mapper/business/BusinessFollowRecordMapper.xml
+3
-3
CustomerFollowRecordMapper.xml
...ces/mapper/system/customer/CustomerFollowRecordMapper.xml
+1
-1
No files found.
dsk-system/src/main/resources/mapper/business/BusinessFollowRecordMapper.xml
View file @
dd169a86
...
...
@@ -71,11 +71,11 @@
left join sys_dept d on u.dept_id = d.dept_id
<where>
<if
test=
"userId != null"
>
and (f.user_id = #{userId} or i.is_private = 1)
</if>
<if
test=
"startTime != null and startTime != '' "
>
and f.
crea
t_time
>
= #{startTime}
</if>
<if
test=
"endTime != null and endTime != '' "
>
and f.
crea
t_time
<
= #{endTime}
</if>
<if
test=
"startTime != null and startTime != '' "
>
and f.
visi
t_time
>
= #{startTime}
</if>
<if
test=
"endTime != null and endTime != '' "
>
and f.
visi
t_time
<
= #{endTime}
</if>
${params.dataScope}
</where>
ORDER BY f.
crea
t_time DESC
ORDER BY f.
visi
t_time DESC
</select>
<select
id=
"selectRelateProject"
resultType=
"com.dsk.system.domain.business.vo.BusinessListVo"
>
select i.id,i.project_name as projectName
...
...
dsk-system/src/main/resources/mapper/system/customer/CustomerFollowRecordMapper.xml
View file @
dd169a86
...
...
@@ -23,7 +23,7 @@
<!-- 数据范围过滤 -->
<if
test=
"params.dataScope != null and params.dataScope != '' "
>
${params.dataScope}
</if>
</where>
order by cfr.
create
_time desc
order by cfr.
visit
_time desc
</select>
</mapper>
...
...
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