package com.ruoyi.account.service.sales;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.account.bean.dto.sales.AccountSalesCollectionDto;
|
import com.ruoyi.account.bean.vo.sales.AccountSalesCollectionVo;
|
import com.ruoyi.account.bean.vo.sales.SalesOutboundVo;
|
import com.ruoyi.account.pojo.sales.AccountSalesCollection;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import jakarta.servlet.http.HttpServletResponse;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 财务管理--收款单 服务类
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-05-18 03:49:56
|
*/
|
public interface AccountSalesCollectionService extends IService<AccountSalesCollection> {
|
|
IPage<AccountSalesCollectionVo> listPageAccountSalesCollection(Page page, AccountSalesCollectionDto accountSalesCollectionDto);
|
|
boolean addAccountSalesCollection(AccountSalesCollection accountSalesCollection);
|
|
void exportAccountSalesCollection(HttpServletResponse response, AccountSalesCollectionDto accountSalesCollectionDto);
|
|
boolean deleteAccountSalesCollection(List<Long> ids);
|
|
List<SalesOutboundVo> getOutboundBatchesByCustomer(Integer customerId);
|
}
|