zoujiajian 1 tahun lalu
induk
melakukan
4e2c8b6717

+ 10 - 0
netflix-web/src/main/java/com/cyksj/web/controller/manage/mirrorshop/manage/CmsUserMirrorShopDataController.java

@@ -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);
+	}
 }