#
lsh
2024-09-09 bb99f3d2bd880fc4bea36efa8f9fb041b483f279
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.common.wms.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.common.wms.entity.WaitPakinLog;
 
public interface WaitPakinLogService extends IService<WaitPakinLog> {
 
    boolean saveToHistory(String zpallet, Long hostId);
 
}