| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.purchase.dto.InvoicePurchaseDto; |
| | | import com.ruoyi.purchase.pojo.InvoicePurchase; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @date 2025-05-14 |
| | | */ |
| | | public interface IInvoicePurchaseService extends IService<InvoicePurchase> { |
| | | List<InvoicePurchase> selectInvoicePurchaseList(InvoicePurchase invoicePurchase); |
| | | List<InvoicePurchaseDto> selectInvoicePurchaseList(InvoicePurchaseDto invoicePurchaseDto); |
| | | |
| | | int delInvoice(Long[] ids); |
| | | |
| | | int addOrUpdateInvoice(InvoicePurchase invoicePurchase); |
| | | int addOrUpdateInvoice(InvoicePurchaseDto invoicePurchaseDto) throws IOException; |
| | | |
| | | InvoicePurchaseDto getInvoiceById(InvoicePurchaseDto invoicePurchaseDto); |
| | | |
| | | List<InvoicePurchase> selectInvoicePurchaseLists(InvoicePurchase invoicePurchase); |
| | | } |