package com.mes.md.service.impl; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.github.yulichang.base.MPJBaseServiceImpl; import com.mes.md.entity.GlassInfo; import com.mes.md.entity.Tasking; import com.mes.md.mapper.GlassInfoMapper; import com.mes.md.service.GlassInfoService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; /** *

* 小片表 (主体北玻) 服务实现类 *

* * @author wu * @since 2024-08-28 */ @Service public class GlassInfoServiceImpl extends MPJBaseServiceImpl implements GlassInfoService { @Override public GlassInfo selectTaskingByGlass(String scanId) { QueryWrapperwrapper = new QueryWrapper<>(); wrapper.eq("scan_id",scanId); return this.getOne(wrapper); } }