LotStepHistoryInqManagerImpl.java

package com.mycim.server.wip.manager.impl;

import com.mycim.server.wip.dao.LotStepHistoryInqDAO;
import com.mycim.server.wip.manager.LotStepHistoryInqManager;
import com.mycim.valueobject.wip.LotStepHistory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * @author finatice.yang
 * @date 2022/1/24
 **/
@Service
public class LotStepHistoryInqManagerImpl implements LotStepHistoryInqManager {

    @Autowired
    LotStepHistoryInqDAO inqDAO;

    @Override
    public LotStepHistory getLotStepHistory(Long lotRrn, Long stepSequence) {
        return inqDAO.getLotStepHistory(lotRrn, stepSequence);
    }

}