#
luxiaotao1123
2022-11-02 2c6d7fededdb5b6b4f0af997c85471d52c8fcf16
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);
 
}