2023-02-22 15:59:13 +08:00
|
|
|
package com.cnbm.packing.mapper;
|
2023-02-23 14:28:05 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2023-02-22 15:59:13 +08:00
|
|
|
|
|
|
|
import com.cnbm.common.dao.BaseDao;
|
|
|
|
import com.cnbm.packing.entity.WoPackagingBoxSubstrate;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 包装箱基板关联表
|
|
|
|
*
|
|
|
|
* @author codeGenerator
|
|
|
|
* @since 2023-02-16
|
|
|
|
*/
|
|
|
|
@Mapper
|
|
|
|
public interface WoPackagingBoxSubstrateMapper extends BaseDao<WoPackagingBoxSubstrate> {
|
2023-02-23 14:28:05 +08:00
|
|
|
WoPackagingBoxSubstrate getOneByWoSubstrateId(@Param("woSubstrateId") String woSubstrateId);
|
|
|
|
|
2023-03-03 14:33:18 +08:00
|
|
|
|
|
|
|
int updatePackagingBoxIdAndSlotByWoSubstrateId(@Param("packagingBoxId") String packagingBoxId, @Param("slot") Integer slot, @Param("woSubstrateId") String woSubstrateId);
|
|
|
|
}
|