新火炬后端单体项目初始化代码
zhangherong
2 天以前 182c04e399f5db26406234767f7ef34b5adc0015
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.jeecg.modules.base.service;
 
import org.jeecg.modules.base.entity.LineSideWarehouse;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @Description: 线边仓库信息
 * @Author: jeecg-boot
 * @Date:   2025-06-24
 * @Version: V1.0
 */
public interface ILineSideWarehouseService extends IService<LineSideWarehouse> {
 
    /**
     * 根据查询ID查询线边库
     * @param factoryId
     * @return
     */
    LineSideWarehouse queryByFactoryId(String factoryId);
}