| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jcdm.common.core.domain.AjaxResult; |
| | | import com.jcdm.main.bs.formulaChild.domain.BsFormulaChildInfo; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | /** |
| | | * 配方配置子信息Service接口 |
| | |
| | | * @author ruimin |
| | | * @date 2023-12-26 |
| | | */ |
| | | public interface IBsFormulaChildInfoService |
| | | public interface IBsFormulaChildInfoService extends IService<BsFormulaChildInfo> |
| | | { |
| | | /** |
| | | * 查询配方配置子信息 |
| | |
| | | |
| | | public BsFormulaChildInfo selectBsFormulaChildInfoByTypeTopOne(String type,String productCode,String processesCode); |
| | | |
| | | List<BsFormulaChildInfo> releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); |
| | | BsFormulaChildInfo releaseCheck(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | AjaxResult updateResults(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | AjaxResult workpieceRelease(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | AjaxResult updateTighteningFormula(BsFormulaChildInfo bsFormulaChildInfo); |
| | | |
| | | public BsFormulaChildInfo getCount(String productCode,String processesCode); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |