|
|
@@ -173,4 +173,14 @@ public class CmsUserMirrorShopDataController {
|
|
|
List<GoodsDon> goodsDons = goodsDonMapper.getUserMirrorShopShopDistributeGoodsDetail(yhShop.getId());
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(goodsDons);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提现记录
|
|
|
+ */
|
|
|
+ @GetMapping("/get/apply/money")
|
|
|
+ public Result<SearchResult<UserMirrorShopDistributeMoneyApply>> getApplyMoney() {
|
|
|
+ long yhShopUserId = StpUserMirrorShopManageUser.getLoginIdAsLong();
|
|
|
+ SearchResult<UserMirrorShopDistributeMoneyApply> search = beanSearcher.search(UserMirrorShopDistributeMoneyApply.class, MapUtils.flatBuilder(request.getParameterMap()).field(UserMirrorShopDistributeMoneyApply::getUserId, yhShopUserId).orderBy(UserMirrorShopDistributeMoneyApply::getId).desc().build());
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
|
+ }
|
|
|
}
|