package com.mes.hollow.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.mes.hollow.entity.HollowFormulaDetails;
|
import com.mes.hollow.entity.vo.HollowGlassFormulaVO;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* (HollowFormulaDetails)表数据库访问层
|
*
|
* @author makejava
|
* @since 2024-12-27 13:34:59
|
*/
|
public interface HollowFormulaDetailsMapper extends BaseMapper<HollowFormulaDetails> {
|
|
HollowGlassFormulaVO queryFormulaDetailsByGlassId(@Param("glassId") String glassId, @Param("flowCardId") String flowCardId, @Param("cell") Integer cell);
|
}
|