自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-10-28 b03799a01cbadde1eed0b053bfec000fe63efb8f
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);
 
}