| | |
| | | |
| | | |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.order.domain.MemberInvoice; |
| | | import com.ruoyi.order.dto.MemberInvoiceDTO; |
| | | import com.ruoyi.order.service.ILogisticsService; |
| | | import com.ruoyi.order.service.impl.LogisticsServiceImpl; |
| | | import com.ruoyi.system.api.domain.Logistics; |
| | | import com.ruoyi.system.api.domain.dto.LogisticsDTO; |
| | | import com.ruoyi.system.api.domain.vo.Express100VO; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/getLogisticsList") |
| | | @ApiOperation(value = "用户端-获取快递信息") |
| | | public R<Express100VO> getLogisticsList(@RequestBody LogisticsDTO logisticsDTO) { |
| | | return R.ok(iLogisticsService.getLogisticsList(logisticsDTO)); |
| | | } |
| | | |
| | | } |