自动化立体仓库 - WMS系统
luxiaotao1123
2020-06-24 c88bd62f7b52a97e513b857e24e2d369f2d8e7e6
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.LocDetl;
 
public interface LocDetlService extends IService<LocDetl> {
 
    Page<LocDetl> getStockOut(Page<LocDetl> page);
 
}