自动化立体仓库 - WCS系统
zc
4 天以前 f11edf2a41cd186ce46581f0b72ebccfc650674f
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasLiftErrLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface BasLiftErrLogService extends IService<BasLiftErrLog> {
 
    BasLiftErrLog findLatestByTaskNo(Integer crnNo, Integer taskNo);
 
}