#
luxiaotao1123
2021-06-04 659e6c18a7298d6a43668f9d187989a65bb24ca0
1
2
3
4
5
6
7
8
9
10
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);
}