2022-04-12 19:29:19 +08:00
|
|
|
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
|
2022-07-13 11:45:16 +08:00
|
|
|
*
|
2022-04-12 19:29:19 +08:00
|
|
|
* @Date 2022/4/12
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface ColumnBuildService {
|
|
|
|
|
/**
|
|
|
|
|
* 核算详情表头元素
|
|
|
|
|
*
|
|
|
|
|
* @param pos pos
|
|
|
|
|
* @param tenantKey 租户key
|
|
|
|
|
* @param flag
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<WeaTableColumn> buildCommonColumnsWithStyle(List<InsuranceAccountDetailPO> pos, Long employeeId, String tenantKey, boolean flag);
|
|
|
|
|
|
2022-04-16 16:43:33 +08:00
|
|
|
List<WeaTableColumn> buildCommonColumns(List<InsuranceAccountDetailPO> pos);
|
2022-04-12 19:29:19 +08:00
|
|
|
|
2022-04-16 16:43:33 +08:00
|
|
|
List<WeaTableColumn> buildInspectColumns(List<InsuranceAccountInspectPO> pos);
|
2022-04-12 19:29:19 +08:00
|
|
|
}
|
|
|
|
|
|