From 6d313a4a6f9f9d7ea65ec50ab0d4491e595edb97 Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期二, 15 十月 2024 09:47:26 +0800 Subject: [PATCH] -打印bug修改 --- 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