41 lines
927 B
Java
41 lines
927 B
Java
package com.engine.salary.service;
|
|
|
|
import com.engine.salary.entity.taxdeclaration.po.TaxReportColumnPO;
|
|
import com.engine.salary.enums.salarysob.IncomeCategoryEnum;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 个税申报表表头
|
|
* <p>Copyright: Copyright (c) 2023</p>
|
|
* <p>Company: 泛微软件</p>
|
|
*
|
|
* @author qiantao
|
|
* @version 1.0
|
|
**/
|
|
public interface TaxReportColumnService {
|
|
|
|
/**
|
|
* 查询所有所得项目的个税申报表表头
|
|
*
|
|
* @return
|
|
*/
|
|
List<TaxReportColumnPO> listAll();
|
|
|
|
|
|
/**
|
|
* 根据是否是对比字段查询
|
|
* @param contrastType 1是 0否
|
|
* @return
|
|
*/
|
|
List<TaxReportColumnPO> listByContrastType(Integer contrastType);
|
|
|
|
/**
|
|
* 根据所得项目查询个税申报表表头
|
|
*
|
|
* @param incomeCategory
|
|
* @return
|
|
*/
|
|
List<TaxReportColumnPO> listByIncomeCategory(IncomeCategoryEnum incomeCategory, Integer... contrastTypes);
|
|
}
|