自动化立体仓库 - WMS系统
zhangc
2025-01-18 8ca385d65454fb8e993970a768ed3ad5c3a095ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.zy.asrs.service;
 
import com.zy.asrs.entity.LocMast;
import com.zy.asrs.entity.LocRule;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface LocRuleService extends IService<LocRule> {
 
    List<LocRule> find(String matnr);
 
    List<LocRule> findCode(String matnr, String other);
 
    //找混载库位规则
    List<LocRule> findMixed();
 
    //将库位规则组转换为库位组
    List<LocMast> locRuleToLocNos(LocRule locRule);
 
    int updateKeepGoByMatnr(String matnr, Integer keepGo);
 
    int updateKeepGoByMixed(Integer keepGo);
 
}