23 lines
664 B
Java
23 lines
664 B
Java
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
|
|
* @Description: TODO
|
|
* @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);
|
|
}
|