自动化立体仓库 - WMS系统
zhangchao
2024-11-18 5975fa9697fa08b65da7426dcf2ccc99d75bf024
1
2
3
4
5
6
7
8
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.InventoryVariance;
 
public interface InventoryVarianceService extends IService<InventoryVariance> {
    public boolean deleteAll();
}