update 查询站点报表详情

This commit is contained in:
2023-08-22 13:44:10 +08:00
parent e2f3fb7a8e
commit 003f4c410e
8 changed files with 57 additions and 21 deletions

View File

@@ -11,7 +11,6 @@ import com.jsowell.pile.domain.SettleOrderReport;
import com.jsowell.pile.dto.MerchantOrderReportDTO;
import com.jsowell.pile.dto.SettleOrderReportDTO;
import com.jsowell.pile.service.ISettleOrderReportService;
import com.jsowell.pile.vo.web.OrderSettleDetailVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
@@ -112,7 +111,6 @@ public class SettleOrderReportController extends BaseController {
@PostMapping("/getStationOrderReportDetail")
public TableDataInfo getStationOrderReportDetail(@RequestBody SettleOrderReportDTO dto) {
// startPage();
List<OrderSettleDetailVO> orderSettleDetailVOS = settleOrderReportService.selectSettleOrderReportDetail(dto);
return getDataTable(orderSettleDetailVOS);
return getDataTable(settleOrderReportService.selectSettleOrderReportDetail(dto));
}
}