自动化立体仓库 - WCS系统
Junjie
2023-03-24 a2c563572181cf54946020db619b6867f11f088a
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.BasSteErrLog;
 
public interface BasSteErrLogService extends IService<BasSteErrLog> {
 
    BasSteErrLog findLatestByTaskNo(Integer steNo, Integer taskNo);
 
    BasSteErrLog findLatest(Integer steNo);
 
}