自动化立体仓库 - WMS系统
dubin
2026-04-16 bab6283f5c0b5da44b7a342f9daef35473a13ab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.core.common.R;
import com.zy.asrs.entity.WrkMastLog;
 
import java.util.Map;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer workNo);
 
    R inventoryFlowList(Integer curr, Integer limit, Map<String, Object> param);
}