hdy
2024-03-23 21508c20a9b80b959d935bdf4ed55002fcff8d16
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;
/**
 * 配方配置子信息Mapper接口
@@ -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);
}