自动化立体仓库 - WMS系统
LSH
2023-09-26 295b8194bc9e35726f32a0c4ad9f0169e43f1c83
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.LocRule;
import com.baomidou.mybatisplus.service.IService;
 
public interface LocRuleService extends IService<LocRule> {
 
    LocRule find(String matnr, String batch, int startRow, int endRow);
 
}