自动化立体仓库 - WCS系统
#
Junjie
2023-10-19 e75603cc12fb0e066474f73623192a1bb27065e8
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.Mat;
 
public interface MatService extends IService<Mat> {
 
    Mat selectByMatnr(String matnr);
 
}