12 lines
287 B
Java
12 lines
287 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);
|
||
|
|
}
|