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
46737649
Commit
46737649
authored
Jun 01, 2024
by
kinky2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改视频传值为String
parent
a8edf770
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ICylinderUnitVideoService.java
...e/cylinder/flc/api/service/ICylinderUnitVideoService.java
+1
-1
CylinderUnitController.java
...e/cylinder/flc/biz/controller/CylinderUnitController.java
+1
-1
CylinderUnitVideoServiceImpl.java
...er/flc/biz/service/impl/CylinderUnitVideoServiceImpl.java
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-api/src/main/java/com/yeejoin/amos/boot/module/cylinder/flc/api/service/ICylinderUnitVideoService.java
View file @
46737649
...
@@ -13,5 +13,5 @@ import java.util.List;
...
@@ -13,5 +13,5 @@ import java.util.List;
*/
*/
public
interface
ICylinderUnitVideoService
{
public
interface
ICylinderUnitVideoService
{
List
<
CommonVideoDto
>
getUnitVideoUrl
(
Lo
ng
unitSeq
);
List
<
CommonVideoDto
>
getUnitVideoUrl
(
Stri
ng
unitSeq
);
}
}
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-biz/src/main/java/com/yeejoin/amos/boot/module/cylinder/flc/biz/controller/CylinderUnitController.java
View file @
46737649
...
@@ -126,7 +126,7 @@ public class CylinderUnitController extends BaseController {
...
@@ -126,7 +126,7 @@ public class CylinderUnitController extends BaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/getUnitVideoUrl"
)
@GetMapping
(
value
=
"/getUnitVideoUrl"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据气瓶企业seq查询视频链接"
,
notes
=
"根据气瓶企业seq查询视频链接"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据气瓶企业seq查询视频链接"
,
notes
=
"根据气瓶企业seq查询视频链接"
)
public
ResponseModel
<
List
<
CommonVideoDto
>>
getUnitVideoUrl
(
@RequestParam
Lo
ng
unitSeq
)
{
public
ResponseModel
<
List
<
CommonVideoDto
>>
getUnitVideoUrl
(
@RequestParam
Stri
ng
unitSeq
)
{
return
ResponseHelper
.
buildResponse
(
icylinderUnitVideoService
.
getUnitVideoUrl
(
unitSeq
));
return
ResponseHelper
.
buildResponse
(
icylinderUnitVideoService
.
getUnitVideoUrl
(
unitSeq
));
}
}
}
}
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-biz/src/main/java/com/yeejoin/amos/boot/module/cylinder/flc/biz/service/impl/CylinderUnitVideoServiceImpl.java
View file @
46737649
...
@@ -42,7 +42,7 @@ public class CylinderUnitVideoServiceImpl extends BaseService<CylinderUnitVideoD
...
@@ -42,7 +42,7 @@ public class CylinderUnitVideoServiceImpl extends BaseService<CylinderUnitVideoD
private
static
final
String
CODE_404
=
"404"
;
private
static
final
String
CODE_404
=
"404"
;
private
static
final
String
CODE_20001
=
"20001"
;
private
static
final
String
CODE_20001
=
"20001"
;
@Override
@Override
public
List
<
CommonVideoDto
>
getUnitVideoUrl
(
Lo
ng
unitSeq
)
{
public
List
<
CommonVideoDto
>
getUnitVideoUrl
(
Stri
ng
unitSeq
)
{
List
<
CommonVideoDto
>
result
=
new
ArrayList
<
CommonVideoDto
>();
List
<
CommonVideoDto
>
result
=
new
ArrayList
<
CommonVideoDto
>();
LambdaQueryWrapper
<
CylinderUnitVideo
>
wrapper
=
new
LambdaQueryWrapper
<>();
LambdaQueryWrapper
<
CylinderUnitVideo
>
wrapper
=
new
LambdaQueryWrapper
<>();
wrapper
.
eq
(
CylinderUnitVideo:
:
getUnitSeq
,
unitSeq
);
wrapper
.
eq
(
CylinderUnitVideo:
:
getUnitSeq
,
unitSeq
);
...
...
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