2022-12-27 17:34:46 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.entity.siaccount.param.SupplementAccountBaseParam;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
public interface SIRepairService {
|
|
|
|
|
|
|
|
|
|
List<Map<String, String>> getSupplementPaymentForm(SupplementAccountBaseParam param);
|
2022-12-28 17:01:15 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取待编辑的补缴费用相关福利项
|
|
|
|
|
*/
|
|
|
|
|
List<Map<String, String>> getPaymentGroup(SupplementAccountBaseParam param);
|
2022-12-27 17:34:46 +08:00
|
|
|
}
|