王佳豪
2021-04-30 ed72baa5f60f2d86cc58799ce96c658321a54d79
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);
}