| | |
| | | |
| | | import org.springblade.common.entity.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import java.util.List; |
| | |
| | | * @param body map集合数据 |
| | | * @return |
| | | */ |
| | | @PostMapping("getParcelList") |
| | | @PostMapping(value = "getParcelList",produces = MediaType.APPLICATION_JSON_UTF8_VALUE) |
| | | List<ParcelExcel> getParcelList(@RequestBody String body); |
| | | |
| | | /** |
| | | * 获取包裹统计数据 |
| | | * @param body map集合数据 |
| | | * @return |
| | | */ |
| | | @PostMapping("getParcelPie") |
| | | List<ReportReturnData> getParcelPie(@RequestBody String body); |
| | | |
| | | /** |
| | | * 获取违禁品数据集合 |
| | |
| | | List<ParcelKindExcel> getParcelKindList(@RequestBody String body); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取违禁品统计数据 |
| | | * @param body map集合数据 |
| | | * @return |
| | | */ |
| | | @PostMapping("getParcelKindPie") |
| | | List<ReportReturnData> getParcelKindPie(@RequestBody String body); |
| | | } |