自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-12-22 82fd6513c1821b6112a50a8b507ba472d2795cdc
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);
 
}