自动化立体仓库 - WCS系统
*
lsh
2024-10-23 d6949829c4876e2ae35f3736c0f4bac57131b342
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasErrLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface BasErrLogService extends IService<BasErrLog> {
 
    BasErrLog findLatestByTaskNo(Integer crnNo, Integer taskNo);
 
    BasErrLog findLatest(Integer crnNo);
 
}