Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
fd859151
Commit
fd859151
authored
Sep 27, 2023
by
KeYong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
515f43ee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
OrgPersonController.java
...oot/module/common/biz/controller/OrgPersonController.java
+2
-2
WaterResourceServiceImpl.java
...ule/common/biz/service/impl/WaterResourceServiceImpl.java
+1
-1
EquipmentSpecificAlarmLogMapper.xml
...main/resources/mapper/EquipmentSpecificAlarmLogMapper.xml
+2
-2
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/controller/OrgPersonController.java
View file @
fd859151
...
...
@@ -449,9 +449,9 @@ public class OrgPersonController extends BaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@RequestMapping
(
value
=
"/people/{id}"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取人员详情"
,
notes
=
"获取人员详情"
)
public
ResponseModel
<
PeopleInfoDto
>
selectPeopleById
(
@PathVariable
Lo
ng
id
)
{
public
ResponseModel
<
PeopleInfoDto
>
selectPeopleById
(
@PathVariable
Stri
ng
id
)
{
PeopleInfoDto
peopleInfoDto
=
iOrgUsrService
.
selectPeopleById
(
id
);
PeopleInfoDto
peopleInfoDto
=
iOrgUsrService
.
selectPeopleById
(
Long
.
valueOf
(
id
)
);
return
ResponseHelper
.
buildResponse
(
peopleInfoDto
);
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/service/impl/WaterResourceServiceImpl.java
View file @
fd859151
...
...
@@ -533,7 +533,7 @@ public class WaterResourceServiceImpl extends BaseService<WaterResourceDto, Wate
}
page
.
setRecords
(
response
.
getResult
());
}
return
new
Page
<>()
;
return
page
;
}
}
amos-boot-system-equip/src/main/resources/mapper/EquipmentSpecificAlarmLogMapper.xml
View file @
fd859151
...
...
@@ -270,8 +270,8 @@
SELECT
id as id,
equipment_specific_index_name AS alarmType,
create_date
AS alarmDate,
clean_time
AS cleanTime,
date_format(create_date, '%Y-%m-%d %H:%i:%s')
AS alarmDate,
date_format(clean_time, '%Y-%m-%d %H:%i:%s')
AS cleanTime,
concat( equipment_specific_name, equipment_specific_index_name ) AS alarmContent,
( CASE clean_time is NULL WHEN TRUE THEN '未消除' ELSE '已消除' END ) AS clearStatus
FROM
...
...
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