自动化立体仓库 - WMS系统
dubin
2025-10-23 cccca64a5f5126f04fbe9a0f7eeb80654d2b380b
1
2
3
4
5
6
7
8
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.InOut;
 
public interface InOutService extends IService<InOut> {
    InOut selectByMatnr(String matnr);
}