Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
peizhen-java
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PeiZhen-Java
peizhen-java
Commits
be2f2db5
Commit
be2f2db5
authored
Sep 18, 2023
by
sdif
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户端代码提交
parent
481f00d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletions
+5
-1
pz-system/src/main/java/com/pz/system/service/impl/DepartmentServiceImpl.java
+3
-0
pz-system/src/main/java/com/pz/system/service/impl/HospitalServiceImpl.java
+1
-0
pz-system/src/main/java/com/pz/system/service/impl/TotalOrderServiceImpl.java
+1
-1
No files found.
pz-system/src/main/java/com/pz/system/service/impl/DepartmentServiceImpl.java
View file @
be2f2db5
...
...
@@ -150,6 +150,9 @@ public class DepartmentServiceImpl implements IDepartmentService {
// 子菜单
List
<
DepartmentVo
>
childList
=
new
ArrayList
<>();
for
(
DepartmentVo
entity
:
allMenu
)
{
entity
.
setLabel
(
entity
.
getTitle
());
entity
.
setValue
(
entity
.
getId
());
entity
.
setText
(
entity
.
getTitle
());
if
(
entity
.
getParentId
().
toString
().
equals
(
id
))
{
childList
.
add
(
entity
);
}
...
...
pz-system/src/main/java/com/pz/system/service/impl/HospitalServiceImpl.java
View file @
be2f2db5
...
...
@@ -75,6 +75,7 @@ public class HospitalServiceImpl implements IHospitalService {
public
TableDataInfo
<
HospitalVo
>
queryPageList
(
HospitalBo
bo
,
PageQuery
pageQuery
)
{
LambdaQueryWrapper
<
Hospital
>
lqw
=
new
LambdaQueryWrapper
<>();
Page
<
HospitalVo
>
result
=
new
Page
<>();
bo
.
setStatus
(
1
);
if
(
null
==
bo
.
getId
())
{
lqw
=
buildQueryWrapper
(
bo
);
result
=
baseMapper
.
selectVoPage
(
pageQuery
.
build
(),
lqw
);
...
...
pz-system/src/main/java/com/pz/system/service/impl/TotalOrderServiceImpl.java
View file @
be2f2db5
...
...
@@ -843,7 +843,7 @@ public class TotalOrderServiceImpl implements ITotalOrderService {
userRefund
.
setSonOrderId
(
sonOrderSimpleDataByTotalId
.
getSonOrderId
());
userRefund
.
setPhone
(
bo
.
getPhone
());
userRefund
.
setStatus
(
0
);
userRefundMapper
.
insert
(
userRefund
);
}
...
...
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