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