weaver-hrm-salary/src/com/engine/salary/service/TaxReportColumnService.java

32 lines
721 B
Java
Raw Normal View History

2023-08-11 14:20:14 +08:00
package com.engine.salary.service;
import com.engine.salary.entity.taxdeclaration.po.TaxReportColumnPO;
import com.engine.salary.enums.salarysob.IncomeCategoryEnum;
import java.util.List;
/**
* @description: 个税申报表表头
* @author: xiajun
* @modified By: xiajun
* @date: Created in 2022/12/5 6:36 PM
* @version:v1.0
*/
public interface TaxReportColumnService {
/**
* 查询所有所得项目的个税申报表表头
*
* @return
*/
List<TaxReportColumnPO> listAll();
/**
* 根据所得项目查询个税申报表表头
*
* @param incomeCategory
* @return
*/
List<TaxReportColumnPO> listByIncomeCategory(IncomeCategoryEnum incomeCategory);
}