|
@@ -13,6 +13,7 @@ import com.cyksj.model.request.UserMirrorShopInfoApplyReq;
|
|
|
import com.cyksj.model.views.*;
|
|
import com.cyksj.model.views.*;
|
|
|
import com.cyksj.service.mange.statistics.StatisticsDataService;
|
|
import com.cyksj.service.mange.statistics.StatisticsDataService;
|
|
|
import com.cyksj.service.mange.usermirror.UserMirrorCommonService;
|
|
import com.cyksj.service.mange.usermirror.UserMirrorCommonService;
|
|
|
|
|
+import com.cyksj.web.util.StpCpsManageUser;
|
|
|
import com.ejlchina.searcher.BeanSearcher;
|
|
import com.ejlchina.searcher.BeanSearcher;
|
|
|
import com.ejlchina.searcher.SearchResult;
|
|
import com.ejlchina.searcher.SearchResult;
|
|
|
import com.ejlchina.searcher.param.Operator;
|
|
import com.ejlchina.searcher.param.Operator;
|
|
@@ -198,4 +199,17 @@ public class UserMirrorShopController {
|
|
|
statisticsDataService.userMirrorShopDistribute(backgroundDataView, startDate, endDate);
|
|
statisticsDataService.userMirrorShopDistribute(backgroundDataView, startDate, endDate);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(backgroundDataView);
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(backgroundDataView);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 提现列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @GetMapping("/get/applyMoney/list")
|
|
|
|
|
+ public Result<SearchResult<CpsApplyMoneyView>> getApplyMoneyList() {
|
|
|
|
|
+ long cpsUserId = StpCpsManageUser.getLoginIdAsLong();
|
|
|
|
|
+ SearchResult<CpsApplyMoneyView> search = beanSearcher.search(CpsApplyMoneyView.class,
|
|
|
|
|
+ MapUtils.flatBuilder(request.getParameterMap())
|
|
|
|
|
+ .field(CpsApplyMoneyView::getUserId, cpsUserId)
|
|
|
|
|
+ .build());
|
|
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|