|
@@ -81,7 +81,6 @@ public class BackendBalanceController extends BaseController {
|
|
|
if (accountInfo == null) {
|
|
|
return getFailureResult(1001, "请先登录");
|
|
|
}
|
|
|
-
|
|
|
Map<String, Object> searchParams = new HashMap<>();
|
|
|
if (StringUtil.isNotEmpty(mobile)) {
|
|
|
searchParams.put("mobile", mobile);
|
|
@@ -95,6 +94,10 @@ public class BackendBalanceController extends BaseController {
|
|
|
if (StringUtil.isNotEmpty(status)) {
|
|
|
searchParams.put("status", status);
|
|
|
}
|
|
|
+ Integer storeId = accountInfo.getStoreId();
|
|
|
+ if (storeId != null && storeId > 0) {
|
|
|
+ searchParams.put("storeId", storeId);
|
|
|
+ }
|
|
|
|
|
|
PaginationRequest paginationRequest = new PaginationRequest();
|
|
|
paginationRequest.setCurrentPage(page);
|
|
@@ -111,7 +114,7 @@ public class BackendBalanceController extends BaseController {
|
|
|
/**
|
|
|
* 提交充值
|
|
|
*
|
|
|
- * @param request HttpServletRequest对象
|
|
|
+ * @param request HttpServletRequest对象
|
|
|
* @return
|
|
|
*/
|
|
|
@ApiOperation(value = "提交充值")
|