IOutItemDao.java 686 字节
package com.myproject.dao.mongo.qisda;

import com.myproject.bean.update.qisda.OutItem;
import com.myproject.dao.mongo.IMongoDao;

import java.util.List;

public interface IOutItemDao extends IMongoDao {

    List<OutItem> findByHSerial(String hSerial);

    List<OutItem> findCutItemList(List<String> soseqList, String pn, String facility);

    List<OutItem> findUnFinishedItemList(List<String> hSerialList, String pn, String facility);

    OutItem findItem(String hSerial, int slotSeq);

    void updateQty(String outItemId, int outQty, int sendQty);

    void updateLockQty(String outItemId, int preLockQty, int realLockQty);

    OutItem findCutItem(String soseq, int slotSeq);
}