|
@@ -28,9 +28,9 @@ public class WholesaleController {
|
|
|
* 查询店铺网站信息
|
|
* 查询店铺网站信息
|
|
|
*/
|
|
*/
|
|
|
@GetMapping("/list/webInfo")
|
|
@GetMapping("/list/webInfo")
|
|
|
- public Result<Page<WebInfoView>> getWebInfo(String prefix,Long wholesaleId,String shopName,Long userId,String nickName,Boolean status,@RequestParam(defaultValue = "1") Integer start,@RequestParam(defaultValue = "10") Integer limit) {
|
|
|
|
|
- log.info("查询店铺网站信息 prefix:{},wholesaleId:{},shopName:{},userId:{},nickName:{}",prefix,wholesaleId,shopName,userId,nickName);
|
|
|
|
|
- Page<WebInfoView> page = webInfoMapper.getWebInfo(new Page<>(start,limit),prefix,wholesaleId,shopName,userId,nickName,status);
|
|
|
|
|
|
|
+ public Result<Page<WebInfoView>> getWebInfo(String prefix,Long wholesaleId,String shopName,Long userId,String nickname,Boolean status,@RequestParam(defaultValue = "1") Integer start,@RequestParam(defaultValue = "10") Integer limit) {
|
|
|
|
|
+ log.info("查询店铺网站信息 prefix:{},wholesaleId:{},shopName:{},userId:{},nickName:{}",prefix,wholesaleId,shopName,userId,nickname);
|
|
|
|
|
+ Page<WebInfoView> page = webInfoMapper.getWebInfo(new Page<>(start,limit),prefix,wholesaleId,shopName,userId,nickname,status);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(page);
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(page);
|
|
|
}
|
|
}
|
|
|
|
|
|