#
Junjie
2024-04-09 f84448a10d99a0fa82e71088051e3517637edaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.common.utils;
 
import com.zy.asrs.common.domain.dto.LocTypeDto;
import com.zy.asrs.common.wms.entity.LocMast;
 
public class VersionUtils {
 
    /**
     *  库位类型检测
     **/
    public static boolean checkLocType(LocMast loc, LocTypeDto dto){
        //库位类型必须和传入的库位信号一致
        if (loc.getLocType1().equals(dto.getLocType1())) {
            return true;
        }
        return false;
    }
 
}