DPHLOPullRespository.java 1.41 KB
Newer Older
akbar fauzi's avatar
akbar fauzi committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.eksad.masterdata.repository;

import com.eksad.masterdata.common.dto.responseDto.ResponseDPHLOPullDTO;

public interface DPHLOPullRespository {

    public ResponseDPHLOPullDTO getDPHLOPullByWONumber(String woNumber); // ini tidak terpakai

    public ResponseDPHLOPullDTO getDPHLOPUllByPONumber(String poNumber); // ini tidak terpakai

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDate(String ahmCode, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDatePO(String ahmCode, String poNumber, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDateSO(String ahmCode, String woNumber, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDateWO(String ahmCode, String woNumber, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDatePOWO(String ahmCode, String poNumber, String woNumber, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByRangeDatePOSO(String ahmCode, String poNumber, String woNumber, String fromTime, String toTime, String ahassCode);

    public ResponseDPHLOPullDTO getDPHLOPullByAll(String woNumber, String poNumber); // ini tidak terpakai

    public ResponseDPHLOPullDTO getDPHLOPullByAllSO(String woNumber, String poNumber); // ini tidak terpakai
}