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
5d6ff773
Commit
5d6ff773
authored
Dec 13, 2021
by
chenhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交对于重点部位接口中查询建筑下的部位信息的详情字段值
parent
a9d912ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
4 deletions
+27
-4
KeySiteDateDto.java
...ejoin/amos/boot/module/common/api/dto/KeySiteDateDto.java
+22
-1
KeySiteMapper.xml
...le-common-api/src/main/resources/mapper/KeySiteMapper.xml
+5
-3
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/KeySiteDateDto.java
View file @
5d6ff773
...
...
@@ -24,8 +24,29 @@ public class KeySiteDateDto {
private
String
floorLongitude
;
@ApiModelProperty
(
value
=
"緯度"
)
private
String
floorLatitude
;
private
String
belongName
;
private
Long
belongId
;
public
String
getKey
()
{
public
String
getBelongName
()
{
return
belongName
;
}
public
void
setBelongName
(
String
belongName
)
{
this
.
belongName
=
belongName
;
}
public
Long
getBelongId
()
{
return
belongId
;
}
public
void
setBelongId
(
Long
belongId
)
{
this
.
belongId
=
belongId
;
}
public
String
getKey
()
{
return
key
;
}
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/resources/mapper/KeySiteMapper.xml
View file @
5d6ff773
...
...
@@ -146,9 +146,11 @@
c.`name` as label,
c.address_desc as fireLocation,
c.longitude as floorLongitude,
c.latitude AS floorLatitude
FROM cb_key_site c
where c.is_delete=FALSE
c.latitude AS floorLatitude,
cou.biz_org_name as belongName,
c.belong_id as belongId
FROM cb_key_site c LEFT JOIN cb_org_usr cou on cou.sequence_nbr = c.belong_id
where c.is_delete=FALSE
<if
test=
"id != null and id != -1"
>
AND c.`belong_id`= #{id}
</if>
...
...
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