自动化立体仓库 - WMS系统
zhangchao
2024-11-02 3d321d82df16121e1c21fb2113757e5a16de54a2
1
2
3
4
5
6
7
8
9
10
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);
 
}