package com.engine.salary.service; import com.engine.salary.entity.taxdeclaration.po.TaxReportColumnPO; import com.engine.salary.enums.salarysob.IncomeCategoryEnum; import java.util.List; /** * 个税申报表表头 *

Copyright: Copyright (c) 2023

*

Company: 泛微软件

* * @author qiantao * @version 1.0 **/ public interface TaxReportColumnService { /** * 查询所有所得项目的个税申报表表头 * * @return */ List listAll(); /** * 根据是否是对比字段查询 * @param contrastType 1是 0否 * @return */ List listByContrastType(Integer contrastType); /** * 根据所得项目查询个税申报表表头 * * @param incomeCategory * @return */ List listByIncomeCategory(IncomeCategoryEnum incomeCategory, Integer... contrastTypes); }