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
3e4f6984
Commit
3e4f6984
authored
Jan 07, 2022
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.机场物联监控 视频矩阵分页接口数据权限过滤
parent
f4db1ab0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
17 deletions
+5
-17
EquipFeignClient.java
...n/amos/boot/module/common/api/feign/EquipFeignClient.java
+1
-1
BuildingVideoListVO.java
...oin/equipmanage/common/entity/vo/BuildingVideoListVO.java
+0
-12
CommandController.java
...boot/module/command/biz/controller/CommandController.java
+4
-4
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/feign/EquipFeignClient.java
View file @
3e4f6984
...
@@ -198,7 +198,7 @@ public interface EquipFeignClient {
...
@@ -198,7 +198,7 @@ public interface EquipFeignClient {
@RequestParam
(
"buildingId"
)
String
buildingId
,
@RequestParam
(
"buildingId"
)
String
buildingId
,
@RequestParam
(
"code"
)
String
code
,
@RequestParam
(
"code"
)
String
code
,
@RequestParam
(
"equipmentName"
)
String
equipmentName
,
@RequestParam
(
"equipmentName"
)
String
equipmentName
,
@RequestParam
(
"
orgTypes"
)
String
orgTypes
@RequestParam
(
"
bizOrgCode"
)
String
bizOrgCode
);
);
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/entity/vo/BuildingVideoListVO.java
View file @
3e4f6984
...
@@ -65,16 +65,4 @@ public class BuildingVideoListVO {
...
@@ -65,16 +65,4 @@ public class BuildingVideoListVO {
@ApiModelProperty
(
"机构编码"
)
@ApiModelProperty
(
"机构编码"
)
private
String
bizOrgCode
;
private
String
bizOrgCode
;
/**
* id列表
*/
@ApiModelProperty
(
"机构编码"
)
private
List
<
String
>
bizOrgCodeList
;
/**
* 部门号
*/
@ApiModelProperty
(
"类型"
)
private
String
orgTypes
;
}
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-command-biz/src/main/java/com/yeejoin/amos/boot/module/command/biz/controller/CommandController.java
View file @
3e4f6984
...
@@ -319,7 +319,7 @@ public class CommandController extends BaseController {
...
@@ -319,7 +319,7 @@ public class CommandController extends BaseController {
}
}
@TycloudOperation
(
needAuth
=
true
,
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@RequestMapping
(
value
=
"/video/page"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/video/page"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"分页获取视频"
,
notes
=
"分页获取视频"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"分页获取视频"
,
notes
=
"分页获取视频"
)
public
ResponseModel
<
Object
>
getVideopage
(
String
current
,
public
ResponseModel
<
Object
>
getVideopage
(
String
current
,
...
@@ -327,10 +327,10 @@ public class CommandController extends BaseController {
...
@@ -327,10 +327,10 @@ public class CommandController extends BaseController {
String
equipmentName
,
String
equipmentName
,
String
code
,
String
code
,
String
buildingId
,
String
buildingId
,
@RequestParam
(
required
=
false
)
String
orgTypes
String
bizOrgCode
)
throws
Exception
{
)
{
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
data
=
equipFeignClient
.
getVideopag
(
current
,
size
,
buildingId
,
code
,
equipmentName
,
orgTypes
);
ResponseModel
<
Page
<
Map
<
String
,
Object
>>>
data
=
equipFeignClient
.
getVideopag
(
current
,
size
,
buildingId
,
code
,
equipmentName
,
bizOrgCode
);
Page
<
Map
<
String
,
Object
>>
pag
=
data
!=
null
?
data
.
getResult
()
:
null
;
Page
<
Map
<
String
,
Object
>>
pag
=
data
!=
null
?
data
.
getResult
()
:
null
;
List
<
Map
<
String
,
Object
>>
records
=
pag
!=
null
?
pag
.
getRecords
()
:
null
;
List
<
Map
<
String
,
Object
>>
records
=
pag
!=
null
?
pag
.
getRecords
()
:
null
;
if
(
records
!=
null
&&
records
.
size
()
>
0
)
{
if
(
records
!=
null
&&
records
.
size
()
>
0
)
{
...
...
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