自动化立体仓库 - WMS系统
*
whycq
2024-09-30 035eb4ea58c56ae748b10e4121fc907aa9de62ea
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);
 
}