Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
朱海
/
VVAS-PicGroup
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit e99ca886
authored
Nov 13, 2025
by
zhuht
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[chg]百货:查询人员接待记录时去掉mall_id条件;
1 parent
69457cc5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/viontech/keliu/dao/DPersonReceptionDao.java
src/main/java/com/viontech/keliu/dao/DPersonReceptionDao.java
View file @
e99ca88
...
...
@@ -27,7 +27,7 @@ public class DPersonReceptionDao {
public
List
<
DPersonReception
>
getPersonReceptionList
(
Long
mallId
,
Date
countDate
,
String
personUnid
,
Date
startTime
,
Date
endTime
)
{
startTime
=
DateUtil
.
offsetMinute
(
startTime
,
-
5
);
endTime
=
DateUtil
.
offsetMinute
(
endTime
,
5
);
String
sql
=
"select * from d_person_reception where
mall_id = ? and
count_date = ? and person_unid = ? and start_time >= ? and end_time <= ? order by start_time;"
;
return
jdbcTemplate
.
query
(
sql
,
new
BeanPropertyRowMapper
<>(
DPersonReception
.
class
),
mallId
,
countDate
,
personUnid
,
startTime
,
endTime
);
String
sql
=
"select * from d_person_reception where count_date = ? and person_unid = ? and start_time >= ? and end_time <= ? order by start_time;"
;
return
jdbcTemplate
.
query
(
sql
,
new
BeanPropertyRowMapper
<>(
DPersonReception
.
class
),
countDate
,
personUnid
,
startTime
,
endTime
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment