服务包订单,查看服务包及详情

This commit is contained in:
曹磊 2024-06-14 10:36:39 +08:00
parent 21c9ed6243
commit 313eb59d87
2 changed files with 10 additions and 4 deletions

View File

@ -117,9 +117,9 @@ public class ArtificerController {
@ApiOperation("查询技师列表") @ApiOperation("查询技师列表")
public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName, public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName,
String longitude,String latitude,Integer sort,Integer authentication, String longitude,String latitude,Integer sort,Integer authentication,
Integer by,String city,Long classifyId,String phone){ Integer by,String city,Long classifyId,String phone,Integer isStart){
return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude, return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude,
sort,authentication,by,null,city,classifyId,phone,null); sort,authentication,by,null,city,classifyId,phone,null,isStart);
} }
@GetMapping("/selectArtificer") @GetMapping("/selectArtificer")

View File

@ -113,9 +113,9 @@ public class AppArtificerController {
@ApiOperation("查询技师列表") @ApiOperation("查询技师列表")
public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName, public Result selectArtificerList(Integer page, Integer limit, Long massageTypeId, String artificerName,
String longitude,String latitude,Integer sort,Integer authentication, String longitude,String latitude,Integer sort,Integer authentication,
Integer by,String city,Long classifyId,String phone){ Integer by,String city,Long classifyId,String phone, Integer isStart){
return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude, return artificerService.selectArtificerList(page, limit, massageTypeId, artificerName,longitude,latitude,
sort,authentication,by,-1,city,classifyId,phone,1); sort,authentication,by,-1,city,classifyId,phone,1,isStart);
} }
@GetMapping("/selectArtificerMassageList") @GetMapping("/selectArtificerMassageList")
@ -492,6 +492,12 @@ public class AppArtificerController {
return Result.success().put("data",result); return Result.success().put("data",result);
} }
@Login
@PostMapping("/getHomeStartArtificerList")
@ApiOperation("首页明星技师")
public Result getHomeStartArtificerList(Integer page,Integer limit,Integer isStart,Integer status,String city){
return artificerService.getHomeStartArtificerList(page,limit,isStart,status,city);
}
} }