wangfei
2024-12-31 4ed47bfce9b3edd78ea447ecffc0babebdbea10b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mes.hollow.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mes.hollow.entity.HollowFormulaDetails;
import com.mes.hollow.entity.vo.HollowGlassFormulaVO;
import com.mes.hollow.mapper.HollowFormulaDetailsMapper;
import com.mes.hollow.service.HollowFormulaDetailsService;
import org.springframework.stereotype.Service;
 
/**
 * (HollowFormulaDetails)表服务实现类
 *
 * @author makejava
 * @since 2024-12-27 13:35:03
 */
@Service
public class HollowFormulaDetailsServiceImpl extends ServiceImpl<HollowFormulaDetailsMapper, HollowFormulaDetails> implements HollowFormulaDetailsService {
 
    @Override
    public HollowGlassFormulaVO queryFormulaDetailsByGlassId(String glassId, String flowCardId, Integer cell) {
        return baseMapper.queryFormulaDetailsByGlassId(glassId, flowCardId, cell);
    }
}