自动化立体仓库 - WMS系统
pang.jiabao
2024-04-18 f746571f6d16529b8e2593e1d25681dde592d56c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.zy.asrs.entity.Mat;
import com.zy.asrs.entity.MatV2;
import com.baomidou.mybatisplus.service.IService;
 
public interface MatV2Service extends IService<MatV2> {
 
    Page<MatV2> getPage(Page page, String tagId, Object matnr, Object maktx);
 
    MatV2 selectByMatnr(String matnr);
 
}