15 lines
489 B
Java
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;
|
|
|
|
}
|