Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
O
on-site-service
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
external
on-site-service
Commits
64501107
Commit
64501107
authored
Jul 18, 2022
by
shangtx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 管理端查询估价员接口
parent
f3d4a4fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ServiceValuatorController.java
...e/admin/controller/service/ServiceValuatorController.java
+1
-1
No files found.
admin/src/main/java/com/onsiteservice/admin/controller/service/ServiceValuatorController.java
View file @
64501107
...
...
@@ -41,7 +41,7 @@ public class ServiceValuatorController {
@ApiOperation
(
value
=
"根据姓名查询"
)
@GetMapping
(
"search"
)
public
Result
<
List
<
ServiceValuatorVO
>>
getDetails
(
@RequestParam
(
"name"
)
@ApiParam
(
name
=
"name"
,
value
=
"估价员姓名"
)
@PathVariable
@NotBlank
String
name
)
{
public
Result
<
List
<
ServiceValuatorVO
>>
getDetails
(
@RequestParam
(
name
=
"name"
,
required
=
false
)
@ApiParam
(
name
=
"name"
,
value
=
"估价员姓名"
)
String
name
)
{
return
success
(
serviceValuatorService
.
selectByName
(
name
));
}
...
...
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