package com.zy.asrs.service;
|
|
import com.baomidou.mybatisplus.service.IService;
|
import com.zy.common.service.erp.entity.OutStockBill;
|
|
import java.util.List;
|
|
public interface OutStockMainService extends IService<OutStockBill> {
|
List<OutStockBill> queryOutStockMain(String FBrNo, Integer FInterID);
|
}
|