| | |
| | | public R contractAmountAnalysisByExportBus(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.contractAmountAnalysisByExportBus(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 分销售模式合同金额统计 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/contractAmountAnalysisBySaleModel") |
| | | public R contractAmountAnalysisBySaleModel(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.contractAmountAnalysisBySaleModel(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄地区分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisByArea") |
| | | public R agingAnalysisByArea(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisByArea(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄行业分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisByIndustry") |
| | | public R agingAnalysisByIndustry(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisByIndustry(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄市场分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisByMarket") |
| | | public R agingAnalysisByMarket(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisByMarket(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysis") |
| | | public R agingAnalysis(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysis(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 规模统计 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisTotalScale") |
| | | public R agingAnalysisTotalScale(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisTotalScale(commonDTO); |
| | | } |
| | | } |