|
|
@@ -16,7 +16,7 @@ import com.cyksj.enums.GatewayResponse;
|
|
|
import com.cyksj.mapper.UserMapper;
|
|
|
import com.cyksj.mapper.shop.YhShopDistributeMoneyApplyMapper;
|
|
|
import com.cyksj.mapper.shop.YhShopMapper;
|
|
|
-import com.cyksj.mapper.shop.YhShopWaitingSendPointsMapper;
|
|
|
+import com.cyksj.mapper.shop.YhShopDistributeWaitingSendPointsMapper;
|
|
|
import com.cyksj.model.entity.User;
|
|
|
import com.cyksj.model.entity.YhShop;
|
|
|
import com.cyksj.model.entity.YhShopDistributeMoneyApply;
|
|
|
@@ -57,7 +57,7 @@ public class YhShopManageServiceImpl implements YhShopManageService{
|
|
|
|
|
|
private final UserBenefitsService userBenefitsService;
|
|
|
|
|
|
- private final YhShopWaitingSendPointsMapper yhShopWaitingSendPointsMapper;
|
|
|
+ private final YhShopDistributeWaitingSendPointsMapper yhShopDistributeWaitingSendPointsMapper;
|
|
|
|
|
|
private final YhShopDistributeMoneyApplyMapper yhShopDistributeMoneyApplyMapper;
|
|
|
|
|
|
@@ -155,13 +155,13 @@ public class YhShopManageServiceImpl implements YhShopManageService{
|
|
|
@Override
|
|
|
public YhShopBrokenLineCpsUserWMoneyView getWMoneyStatisticsDate(long yhShopUserId, DateTime first, DateTime end) {
|
|
|
boolean today = isToday(first, end);
|
|
|
- return yhShopWaitingSendPointsMapper.getWMoneyStatisticsDataView(yhShopUserId, first, end, today);
|
|
|
+ return yhShopDistributeWaitingSendPointsMapper.getWMoneyStatisticsDataView(yhShopUserId, first, end, today);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<YhShopUserWMoneyStatisticsDataView> getWMoneyStatisticsDataView(long yhShopUserId, DateTime first, DateTime end) {
|
|
|
boolean today = isToday(first, end);
|
|
|
- return yhShopWaitingSendPointsMapper.getWMoneyStatisticsDate(yhShopUserId, first, end, today);
|
|
|
+ return yhShopDistributeWaitingSendPointsMapper.getWMoneyStatisticsDate(yhShopUserId, first, end, today);
|
|
|
}
|
|
|
|
|
|
@Override
|