fairnet/src/main/java/kcc/kccadr/accdnt/apm/service/AdjstPayMentService.java
2024-07-08 15:37:51 +09:00

15 lines
489 B
Java

package kcc.kccadr.accdnt.apm.service;
import java.util.List;
public interface AdjstPayMentService {
int selectAdjstPayMentCount(AdjstPayMentVO adjstPayMentVO) throws Exception;
List<AdjstPayMentVO> selectAdjstPayMentList(AdjstPayMentVO adjstPayMentVO) throws Exception;
List<AdjstPayMentVO> selectAdjstPayMentDetailList(AdjstPayMentVO adjstPayMentVO) throws Exception;
List<AdjstPayMentVO> selectAdjstPayMentDetail(AdjstPayMentVO adjstPayMentVO) throws Exception;
}