自动化立体仓库 - WCS系统
#
zjj
2024-05-11 fb68b101b451988c7ccff13595f6072e98774a59
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);
 
}