wangfei
2025-09-22 7ba23e6e4870465855d80d026cf31490e0f8d427
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}