|
@@ -1,9 +1,12 @@
|
|
package com.abi.qms.platform.dao.mapper;
|
|
package com.abi.qms.platform.dao.mapper;
|
|
|
|
|
|
import com.abi.qms.platform.dao.entity.QrBoxCodeFormatSplit;
|
|
import com.abi.qms.platform.dao.entity.QrBoxCodeFormatSplit;
|
|
|
|
+import com.abi.qms.platform.dao.vo.result.QrRepertoryColumnVO;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
* 箱码幅面关联码库拆分数量 Mapper 接口
|
|
* 箱码幅面关联码库拆分数量 Mapper 接口
|
|
@@ -26,4 +29,13 @@ public interface QrBoxCodeFormatSplitMapper extends BaseMapper<QrBoxCodeFormatSp
|
|
* @param boxCodeFormatId
|
|
* @param boxCodeFormatId
|
|
*/
|
|
*/
|
|
void deleteByBoxCodeFormatId(@Param("boxCodeFormatId") Long boxCodeFormatId);
|
|
void deleteByBoxCodeFormatId(@Param("boxCodeFormatId") Long boxCodeFormatId);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取分割数据
|
|
|
|
+ * @author ludashi
|
|
|
|
+ * @date 2021/6/1 14:24
|
|
|
|
+ * @param id
|
|
|
|
+ * @param qrRepertoryId
|
|
|
|
+ */
|
|
|
|
+ List<QrBoxCodeFormatSplit> querySplit(@Param("id")Long id,@Param("qrRepertoryId") Long qrRepertoryId);
|
|
}
|
|
}
|