package com.engine.salary.service; import com.cloudstore.eccom.pc.table.WeaTableColumn; import com.engine.salary.entity.siaccount.po.InsuranceAccountDetailPO; import com.engine.salary.entity.siaccount.po.InsuranceAccountInspectPO; import java.util.List; /** * @Author weaver_cl * @Description: TODO * @Date 2022/4/12 * @Version V1.0 **/ public interface ColumnBuildService { /** * 核算详情表头元素 * * @param pos pos * @param tenantKey 租户key * @param flag * @return */ List buildCommonColumnsWithStyle(List pos, Long employeeId, String tenantKey, boolean flag); List buildCommonColumns(List pos, Long employeeId, String tenantKey); List buildInspectColumns(List pos, Long employeeId, String tenantKey); }