61 lines
1.8 KiB
Java
61 lines
1.8 KiB
Java
|
|
package com.engine.salary.service;
|
||
|
|
|
||
|
|
import com.engine.salary.entity.taxdeclaration.dto.AbnormalEmployeeListDTO;
|
||
|
|
import com.engine.salary.entity.taxdeclaration.param.AbnormalEmployeeListQueryParam;
|
||
|
|
import com.engine.salary.entity.taxdeclaration.po.TaxDeclareEmployeePO;
|
||
|
|
import com.engine.salary.entity.taxdeclaration.po.TaxDeclareRecordPO;
|
||
|
|
import com.engine.salary.util.page.PageInfo;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: 个税申报表明细中的人员
|
||
|
|
* @author: xiajun
|
||
|
|
* @modified By: xiajun
|
||
|
|
* @date: Created in 2022/11/10 4:10 PM
|
||
|
|
* @version:v1.0
|
||
|
|
*/
|
||
|
|
public interface TaxDeclareEmployeeService {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询个税申报表明细中未报送成功的人员
|
||
|
|
*
|
||
|
|
* @param queryParam
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
PageInfo<TaxDeclareEmployeePO> listPage4NotDeclareByParam(AbnormalEmployeeListQueryParam queryParam);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询个税申报表明细中未报送成功的人员
|
||
|
|
*
|
||
|
|
* @param queryParam
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<TaxDeclareEmployeePO> list4NotDeclareByParam(AbnormalEmployeeListQueryParam queryParam);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询已报送但是没有申报数据的人员
|
||
|
|
*
|
||
|
|
* @param queryParam
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
PageInfo<TaxDeclareEmployeePO> listPage4NoValueByParam(AbnormalEmployeeListQueryParam queryParam);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询已报送但是没有申报数据的人员
|
||
|
|
*
|
||
|
|
* @param queryParam
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<TaxDeclareEmployeePO> list4NoValueByParam(AbnormalEmployeeListQueryParam queryParam);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 转换成数据异常人员dto
|
||
|
|
*
|
||
|
|
* @param taxDeclareRecord
|
||
|
|
* @param taxDeclareEmployees
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<AbnormalEmployeeListDTO> convert2AbnormalEmployeeList(TaxDeclareRecordPO taxDeclareRecord, List<TaxDeclareEmployeePO> taxDeclareEmployees);
|
||
|
|
}
|