2022-04-12 10:24:21 +08:00
|
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.entity.siaccount.po.InsuranceAccountDetailPO;
|
|
|
|
|
|
import com.engine.salary.entity.siaccount.po.InsuranceAccountInspectPO;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @Author weaver_cl
|
2022-07-08 11:30:10 +08:00
|
|
|
|
* @Description: 该条数据不在个税扣缴义务人人员范围内,不可导入
|
2022-04-12 10:24:21 +08:00
|
|
|
|
* @Date 2022/4/11
|
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
|
**/
|
|
|
|
|
|
public interface RecordsBuildService {
|
|
|
|
|
|
|
|
|
|
|
|
List<Map<String, Object>> buildCommonRecords(List<InsuranceAccountDetailPO> list, Long employeeId);
|
|
|
|
|
|
|
|
|
|
|
|
List<Map<String, Object>> buildCommonRecordsWithStyle(List<InsuranceAccountDetailPO> list, Long employeeId);
|
|
|
|
|
|
|
|
|
|
|
|
List<Map<String, Object>> buildInspectRecords(List<InsuranceAccountInspectPO> list);
|
|
|
|
|
|
}
|