| | |
| | | import com.ruoyi.order.domain.MemberInvoiceOrder; |
| | | import com.ruoyi.order.dto.MemberInvoiceDTO; |
| | | import com.ruoyi.order.service.IMemberInvoiceOrderService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import javax.annotation.Resource; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/member-invoice-order") |
| | | @Api(value = "用户端-用户开票历史详情相关接口", tags = "用户端-用户开票历史详情相关接口", description = "用户端-用户开票历史详情关接口") |
| | | public class MemberInvoiceOrderController { |
| | | |
| | | @Resource |
| | | private IMemberInvoiceOrderService iMemberInvoiceOrderService; |
| | | @PostMapping("/getMemberInvoiceInfo") |
| | | @ResponseBody |
| | | @ApiOperation(value = "用户端-获取用户开票历史详情") |
| | | public R<PageDTO<MemberInvoiceOrder>> getMemberInvoiceInfo(@RequestBody MemberInvoiceDTO memberInvoiceDTO) { |
| | | return R.ok(iMemberInvoiceOrderService.getMemberInvoiceInfo(memberInvoiceDTO)); |
| | | } |
| | | |
| | | } |