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