123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.jkcredit.invoice.service.lowerservice;
- import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
- import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
- import com.jkcredit.invoice.service.lowerservice.vo.HCInvoiceQueryVo;
- import com.jkcredit.invoice.service.lowerservice.vo.MonthAccountQueryVo;
- import com.jkcredit.invoice.util.RespR;
- import java.util.List;
- /**
- * 无车接口
- */
- public interface NoCarService {
- /**
- * 车辆备案
- * @param customerCarRec
- * @return
- */
- RespR customerCarRec(List<CustomerCarRec> customerCarRec);
- /**
- * 车辆备案查询查上游
- * @param customerCarRec
- * @return
- */
- RespR customerCarRecQueryUpper(CustomerCarRec customerCarRec);
- /**
- * 无车车辆备案查询
- * @param customerCarRec
- * @return
- */
- RespR customerCarRecQuery(CustomerCarRec customerCarRec);
- /**
- * 运单指令开始
- * @return
- */
- RespR noCarWaybillStart(NoCarWayBill noCarWayBill);
- /**
- * 运单指令结束
- * @return
- */
- RespR noCarWaybillEnd(NoCarWayBill noCarWayBill);
- /**
- * 历史运单指令开始
- * @return
- */
- RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill);
- /**
- * 历史运单指令结束
- * @return
- */
- RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill);
- /**
- * 获取发票和运单状态 true 实时 false 走本地
- * @param noCarWayBill
- * @param isInterface
- * @return
- */
- RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill,boolean isInterface);
- /**
- * 红冲发票查询
- * @param hcInvoiceQueryVo
- * @return
- */
- RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo);
- /**
- * 红冲发票查询接口
- * @param hcInvoiceQueryVo
- * @return
- */
- RespR hCInvoiceQueryInter(HCInvoiceQueryVo hcInvoiceQueryVo);
- /**
- * 红冲发票更新
- * @param hcInvoiceQueryVo
- * @return
- */
- RespR hCInvoiceUpdate(HCInvoiceQueryVo hcInvoiceQueryVo);
- /**
- * 月账单查询
- * @param monthAccountQueryVo
- * @return
- */
- RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo);
- /**
- * 月账单查询更新
- * @param monthAccountQueryVo
- * @return
- */
- RespR monthAccQueryUpdate(MonthAccountQueryVo monthAccountQueryVo);
- }
|