| | |
| | | import com.dsh.guns.modular.system.model.SalesDetailVO; |
| | | import com.dsh.guns.modular.system.util.ResultUtil; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | |
| | | Map<String, BigDecimal> getStaticsData(@RequestBody HuiminPayQuery query); |
| | | |
| | | /** |
| | | * 退款惠民卡 |
| | | * 退款玩湃惠民卡 |
| | | * @param id |
| | | */ |
| | | @GetMapping("/base/tPayHuimin/refund/{id}") |
| | | ResultUtil<?> refund(Integer id); |
| | | @PostMapping("/base/tPayHuimin/refund") |
| | | void refund(@RequestBody Integer id); |
| | | |
| | | @PostMapping("/base/tPayHuimin/export-data") |
| | | List<SalesDetailVO> exportData(@RequestBody HuiminPayQuery query); |