| | |
| | | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.dao.business.dto.DirectInvoicingDTO; |
| | | import com.doumee.dao.business.dto.EntrustInvoicingDTO; |
| | | import com.doumee.dao.business.model.Taxes; |
| | | import com.doumee.dao.business.vo.TaxesInvoicingVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 发票信息表Service定义 |
| | | * @author 江蹄蹄 |
| | | * @date 2024/01/15 11:15 |
| | | * @date 2024/01/16 10:03 |
| | | */ |
| | | public interface TaxesService { |
| | | |
| | |
| | | */ |
| | | PageData<Taxes> findPage(PageWrap<Taxes> pageWrap); |
| | | |
| | | PageData<Taxes> findPageForCompany(PageWrap<Taxes> pageWrap); |
| | | |
| | | List<Taxes> findListForCompany(Taxes queryModel); |
| | | /** |
| | | * 条件统计 |
| | | * |
| | |
| | | * @return long |
| | | */ |
| | | long count(Taxes taxes); |
| | | |
| | | void doneApply(Taxes taxes); |
| | | |
| | | void backApply(Taxes taxes); |
| | | |
| | | |
| | | /** |
| | | * 委托投保提交 |
| | | * @param entrustInvoicingDTO |
| | | */ |
| | | void entrustInvoicing(EntrustInvoicingDTO entrustInvoicingDTO); |
| | | |
| | | /** |
| | | * 直托投保数据提交 |
| | | * @param directInvoicingDTO |
| | | */ |
| | | void directInvoicing(DirectInvoicingDTO directInvoicingDTO); |
| | | |
| | | /** |
| | | * 查询直保数据 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<TaxesInvoicingVO> getDirectTaxes(Integer id); |
| | | } |