fix:人员门店支持关键字keywork搜索

This commit is contained in:
suzhuhong
2025-12-25 20:08:02 +08:00
parent 655b9a8f17
commit f279db70a3

View File

@@ -30,6 +30,6 @@ public class PCStoreController {
@ApiOperation("当前用户门店列表")
@PostMapping("/userStoreList")
public ResponseResult<PageInfo<MiniShopsResponse>> getCurrentUserStoreList(@RequestBody UserStoreRequest request) {
return ResponseResult.success(storeService.getStoreListByMobile(CurrentUserHolder.getUser().getMobile(), request.getPageNum(), request.getPageSize(), request.getKeyword(), request.getKeyword()));
return ResponseResult.success(storeService.getStoreListByMobile(CurrentUserHolder.getUser().getMobile(), request.getPageNum(), request.getPageSize(), request.getKeyword(), null));
}
}