You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
package com.gaotao.modules.warehouse.dao;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.gaotao.modules.warehouse.entity.Pallet;
|
|
import com.gaotao.modules.warehouse.entity.PalletData;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* @Description 托盘信息Mapper接口 - rqrq
|
|
* @Author rqrq
|
|
* @Date 2025/10/14
|
|
*/
|
|
@Mapper
|
|
public interface PalletMapper extends BaseMapper<Pallet> {
|
|
|
|
/**
|
|
* @Description 查询托盘列表(关联pallet_type和pallet_family表) - rqrq
|
|
* @param page 分页参数
|
|
* @param queryDto 查询条件
|
|
* @return 托盘列表
|
|
* @author rqrq
|
|
* @date 2025/10/14
|
|
*/
|
|
IPage<PalletData> selectPalletList(IPage<PalletData> page, @Param("query") PalletData queryDto);
|
|
|
|
/**
|
|
* @Description 根据托盘ID查询托盘信息(关联pallet_type和pallet_family表) - rqrq
|
|
* @param palletId 托盘ID
|
|
* @return 托盘信息
|
|
* @author rqrq
|
|
* @date 2025/10/14
|
|
*/
|
|
PalletData selectPalletByPalletId(@Param("palletId") String palletId);
|
|
|
|
void updateLocationWithPalletId(@Param("site") String site,@Param("palletId") String palletId,@Param("locationCode") String locationCode,@Param("wcsLocation") String wcsLocation);
|
|
|
|
}
|