/* * Copyright (c) 2018-2025, ztt All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the pig4cloud.com developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: ztt */ package com.chinaztt.mes.warehouse.service; import com.baomidou.mybatisplus.extension.service.IService; import com.chinaztt.mes.warehouse.dto.PalletTransportsDetailDTO; import com.chinaztt.mes.warehouse.entity.PalletTransportsDetail; import com.chinaztt.ztt.common.core.util.R; import java.util.List; /** * 货盘运输任务移库明细表 * * @author shz * @date 2022-05-24 17:17:26 */ public interface PalletTransportsDetailService extends IService { void executeMoveLocation(List ids); R checkScanPalletTransportsDetail(Long transportsId,String partNo,String batchNo,String wdr); /** * 批量新增货盘运输任务移库明细表 * @param details * @return */ Boolean saveBatchDetails(List details); /** * 修改货盘运输任务移库明细表 * @param detail * @return */ R update(PalletTransportsDetail detail); /** * 通过id删除货盘运输任务移库明细表 * @param id * @return */ R remove(Long id); /** * 新增货盘运输任务移库明细表 * @param palletTransportsDetail */ R savePalletTransportsDetail(PalletTransportsDetail palletTransportsDetail); /** * 变更货盘运输任务状态 * @param transportsId */ public void changeTransportsState(Long transportsId); }