自动化立体仓库 - WCS系统
#
Junjie
2023-10-24 925b834a3341dbe9f486964a7ad5d1affd7a404d
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);
 
}