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