zhoushihao
2025-04-15 c6cb57f307b0c62a05cac78cfd828c313f10e611
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);
}