package com.jkcredit.invoice.controller.localBussiness; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.jkcredit.invoice.annotation.LoginRequired; import com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor; import com.jkcredit.invoice.model.entity.customer.CustomerCarRec; import com.jkcredit.invoice.model.entity.invoice.BillInvoice; import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill; import com.jkcredit.invoice.service.CalculateInfor.NoCarCalculateInfoService; import com.jkcredit.invoice.service.nocar.NoCarBillWayService; import com.jkcredit.invoice.service.nocar.NoCarRecService; import com.jkcredit.invoice.service.nocar.NocarInvoiceService; import com.jkcredit.invoice.util.RespR; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Api(tags = "无车操作") @RestController @RequestMapping(value = {"/noCar"}) public class NoCarController { @Autowired NoCarRecService noCarService; @Autowired NoCarBillWayService noCarBillWayService; @Autowired NocarInvoiceService nocarInvoiceService; @Autowired NoCarCalculateInfoService noCarCalculateInfoService; /** * 分页查询无车备案信息 * * @param page 参数集 * @return 用户集合 */ @PostMapping("/findCarRec") @ApiOperation(value="分页查询无车备案信息", notes="分页查询无车备案信息") @LoginRequired public RespR getCustomersByPage(Page page, CustomerCarRec customerCarRec) { try { RespR respR = new RespR(noCarService.findByPageAndCarRec(page, customerCarRec)); return respR; }catch (Exception e){ e.printStackTrace(); return new RespR(false,e.getMessage()); } } /** * 分页查询运单信息 * * @param page 参数集 * @return 用户集合 */ @PostMapping("/findBillWay") @ApiOperation(value="分页查询无车运单信息", notes="分页查询无车运单信息") @LoginRequired public RespR findBillWay(Page page, NoCarWayBill noCarWayBill) { try { RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill)); return respR; }catch (Exception e){ e.printStackTrace(); return new RespR(false,e.getMessage()); } } /** * 分页查询异常运单信息 * * @param page 参数集 * @return 用户集合 */ @PostMapping("/findBillWayException") @ApiOperation(value="分页查询异常运单信息", notes="分页查询异常运单信息") @LoginRequired public RespR findBillWayException(Page page, NoCarWayBill noCarWayBill) { try { RespR respR = new RespR(noCarBillWayService.findByPageAndWayBillException(page, noCarWayBill)); return respR; }catch (Exception e){ e.printStackTrace(); return new RespR(false,e.getMessage()); } } /** * 分页查询无车运单信息 * * @param page 参数集 * @return 用户集合 */ @PostMapping("/findNocarInvoices") @ApiOperation(value="分页查询无车发票信息", notes="分页查询无车发票信息") @LoginRequired public RespR findNocarInvoices(Page page, BillInvoice billInvoice) { try { RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice)); return respR; }catch (Exception e){ e.printStackTrace(); return new RespR(false,e.getMessage()); } } /** * 分页查询无车计费信息 * * @param page 参数集 * @return 用户集合 */ @PostMapping("/findNocarCalculateInfo") @ApiOperation(value="分页查询无车计费信息", notes="分页查询无车计费信息") @LoginRequired public RespR findNocarCalculateInfo(Page page, NoCarCalculateInfor carCalculateInfor) { try { RespR respR = new RespR(noCarCalculateInfoService.findByPageAndCalculateInfor(page, carCalculateInfor)); return respR; }catch (Exception e){ e.printStackTrace(); return new RespR(false,e.getMessage()); } } }