|
@@ -123,11 +123,11 @@ public class LifeUserExpertController {
|
|
|
@ApiImplicitParam(name = "userId", value = "用户id", dataType = "String", paramType = "query")})
|
|
@ApiImplicitParam(name = "userId", value = "用户id", dataType = "String", paramType = "query")})
|
|
|
@GetMapping("/getApplicationExpertList")
|
|
@GetMapping("/getApplicationExpertList")
|
|
|
public R<IPage<LifeUserExpertVo>> getApplicationExpertList(Integer page, Integer size, String userName, String realName, String userPhone, Integer expertStatus, String createdTime, String endTime , Integer userId) {
|
|
public R<IPage<LifeUserExpertVo>> getApplicationExpertList(Integer page, Integer size, String userName, String realName, String userPhone, Integer expertStatus, String createdTime, String endTime , Integer userId) {
|
|
|
- log.info("LifeUserExpertController.getApplicationExpertList?page={},size={},userName={},userName={},realName={},userPhone={},expertStatus={},createdTime={},endTime={},userId={}", page, size, userName,realName,userPhone,expertStatus,createdTime,endTime,userId);
|
|
|
|
|
|
|
+ log.info("LifeUserExpertController.getApplicationExpertList?page={},size={},userName={},realName={},userPhone={},expertStatus={},createdTime={},endTime={},userId={}", page, size, userName,realName,userPhone,expertStatus,createdTime,endTime,userId);
|
|
|
return R.data(lifeUserExpertService.getApplicationExpertList(page, size, userName, realName, userPhone, expertStatus, createdTime, endTime, userId));
|
|
return R.data(lifeUserExpertService.getApplicationExpertList(page, size, userName, realName, userPhone, expertStatus, createdTime, endTime, userId));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- @ApiOperation("查看详情")
|
|
|
|
|
|
|
+ @ApiOperation("达人申请查看详情")
|
|
|
@ApiOperationSupport(order = 10)
|
|
@ApiOperationSupport(order = 10)
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "userId", value = "用户id", dataType = "String", paramType = "query")})
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "userId", value = "用户id", dataType = "String", paramType = "query")})
|
|
|
@GetMapping("/getViewDetails")
|
|
@GetMapping("/getViewDetails")
|
|
@@ -136,5 +136,25 @@ public class LifeUserExpertController {
|
|
|
return R.data(lifeUserExpertService.getViewDetails(userId));
|
|
return R.data(lifeUserExpertService.getViewDetails(userId));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation("达人预付款列表")
|
|
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
|
|
|
+ @ApiImplicitParams({@ApiImplicitParam(name = "page", value = "分页页数", dataType = "Integer", paramType = "query", required = true),
|
|
|
|
|
+ @ApiImplicitParam(name = "size", value = "分页条数", dataType = "Integer", paramType = "query", required = true),
|
|
|
|
|
+ @ApiImplicitParam(name = "realName", value = "真实姓名", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "userPhone", value = "联系电话", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "status", value = "订单状态", dataType = "Integer", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "createdTime", value = "下单开始时间", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "endTime", value = "下单结束时间", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "name", value = "套餐名称", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "userId", value = "用户id", dataType = "String", paramType = "query")
|
|
|
|
|
+
|
|
|
|
|
+ })
|
|
|
|
|
+ @GetMapping("/getAdvancePaymentList")
|
|
|
|
|
+ public R<List<LifeUserExpertOrderVo>> getAdvancePaymentList( Integer page, Integer size,String realName, String userPhone, Integer status, String createdTime, String endTime ,String name, Integer userId) {
|
|
|
|
|
+ log.info("LifeUserExpertController.getViewDetails?userId={}",userId);
|
|
|
|
|
+ return R.data(lifeUserExpertService.getAdvancePaymentList(page, size, realName, userPhone, status, createdTime, endTime, name, userId));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
|
|
|
}
|
|
}
|