huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.mes.base.formula.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.hollow.formula.HollowFormulaDetails;
import com.mes.hollow.formula.dto.HollowGlassFormulaDTO;
import org.apache.ibatis.annotations.Param;
 
/**
 * 中空配方表(HollowFormulaDetails)表数据库访问层
 *
 * @author makejava
 * @since 2025-07-08 16:01:34
 */
public interface HollowFormulaDetailsMapper extends BaseMapper<HollowFormulaDetails> {
 
    /**
     * 获取料架原片详情信息
     *
     * @param glassId
     * @param flowCardId
     * @param cell
     * @return
     */
    HollowGlassFormulaDTO queryFormulaDetailsByGlassId(@Param("glassId") String glassId, @Param("flowCardId") String flowCardId, @Param("cell") Integer cell);
 
}