自动化立体仓库 - WMS系统
#
lsh
2025-04-10 88aa59b8dde2d6a5dba8f09f06bb7beb81989d32
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.RowLastno;
 
public interface RowLastnoService extends IService<RowLastno> {
 
    RowLastno findBySection(Integer row);
 
    Integer selectNextWhsType();
 
}