自动化立体仓库 - WCS系统
whycq
2023-09-15 a9e8a91fd4c8c504d7df9ef921f32d832390e77d
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.BasCrnp;
 
public interface BasCrnpService extends IService<BasCrnp> {
 
    BasCrnp checkSiteStatus(Integer crnId);
 
    boolean checkSiteError(Integer crnNo, boolean pakin);
 
}