王佳豪
2021-06-09 aa21112291b04d0d3d53d75104a348f019f935a1
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);
}