17 lines
438 B
Java
17 lines
438 B
Java
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);
|
|
|
|
/**
|
|
* 获取待编辑的补缴费用相关福利项
|
|
*/
|
|
List<Map<String, String>> getPaymentGroup(SupplementAccountBaseParam param);
|
|
}
|