package org.jeecg.modules.spare.mapper;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Select;
|
import org.jeecg.modules.spare.entity.SparePartPurchaseStorage;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
/**
|
* @Description: mom_eam_spare_part_purchase_storage
|
* @Author: jeecg-boot
|
* @Date: 2023-06-27
|
* @Version: V1.0
|
*/
|
public interface SparePartPurchaseStorageMapper extends BaseMapper<SparePartPurchaseStorage> {
|
|
/**
|
*获取仓库管理下 仓库对应的库位信息
|
*/
|
@Select("select location_manage from mom_base_warehouse where id = #{warehouseId} and del_flag = '0'")
|
List<String> getWarehouselocationManage(@Param("warehouseId")String warehouseId);
|
|
}
|