| 12345678910111213141516171819202122232425262728293031323334 |
- package com.fdkankan.ucenter.service;
- import com.fdkankan.ucenter.common.Result;
- import com.fdkankan.ucenter.entity.Invoice;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fdkankan.ucenter.vo.request.InvoiceParam;
- import com.fdkankan.ucenter.vo.request.PlaceOrderParam;
- import java.math.BigDecimal;
- /**
- * <p>
- * 发票表 服务类
- * </p>
- *
- * @author
- * @since 2022-07-13
- */
- public interface IInvoiceService extends IService<Invoice> {
- Invoice getByOrderId(Long orderId);
- Invoice getByIncrementOrderId(Long incrementOrderId);
- Invoice getByDownId(Long downId);
- void saveByOrder(Long userId, PlaceOrderParam param);
- Invoice openInvoice(InvoiceParam param, String token);
- void checkInvoice(Long orderId, Integer consumeType);
- BigDecimal getMoney(Long orderId, Integer consumeType);
- }
|