From e20d7373595960ad6be9bd6373a3c6f186e76e5c Mon Sep 17 00:00:00 2001 From: 懒羊羊 <15939171744@163.com> Date: 星期六, 23 三月 2024 15:05:49 +0800 Subject: [PATCH] - --- jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/mapper/BsFormulaChildInfoMapper.java | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/mapper/BsFormulaChildInfoMapper.java b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/mapper/BsFormulaChildInfoMapper.java index 695115c..c42b46b 100644 --- a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/mapper/BsFormulaChildInfoMapper.java +++ b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/mapper/BsFormulaChildInfoMapper.java @@ -1,7 +1,10 @@ package com.jcdm.main.bs.formulaChild.mapper; import java.util.List; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.jcdm.main.bs.formulaChild.domain.BsFormulaChildInfo; +import org.springframework.data.repository.query.Param; /** * 閰嶆柟閰嶇疆瀛愪俊鎭疢apper鎺ュ彛 @@ -9,7 +12,7 @@ * @author ruimin * @date 2023-12-26 */ -public interface BsFormulaChildInfoMapper +public interface BsFormulaChildInfoMapper extends BaseMapper<BsFormulaChildInfo> { /** * 鏌ヨ閰嶆柟閰嶇疆瀛愪俊鎭� @@ -61,7 +64,9 @@ BsFormulaChildInfo selectBsFormulaChildInfoByTypeTopOne(BsFormulaChildInfo bsFormulaChildInfo); - List<BsFormulaChildInfo> releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); + BsFormulaChildInfo releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); void workpieceRelease(BsFormulaChildInfo bsFormulaChildInfo); + + BsFormulaChildInfo getCount(BsFormulaChildInfo info); } -- Gitblit v1.9.3