| | |
| | | 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; |
| | | |
| | | /** |
| | | * 配方配置子信息Mapper接口 |
| | |
| | | * @author ruimin |
| | | * @date 2023-12-26 |
| | | */ |
| | | public interface BsFormulaChildInfoMapper |
| | | public interface BsFormulaChildInfoMapper extends BaseMapper<BsFormulaChildInfo> |
| | | { |
| | | /** |
| | | * 查询配方配置子信息 |
| | |
| | | |
| | | BsFormulaChildInfo selectBsFormulaChildInfoByTypeTopOne(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | List<BsFormulaChildInfo> releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); |
| | | BsFormulaChildInfo releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | void workpieceRelease(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | BsFormulaChildInfo getCount(BsFormulaChildInfo info); |
| | | } |