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;
|
|
/**
|
* <p>
|
* 小片表 (主体北玻) 服务实现类
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
@Service
|
public class GlassInfoServiceImpl extends MPJBaseServiceImpl<GlassInfoMapper, GlassInfo> implements GlassInfoService {
|
|
@Override
|
public GlassInfo selectTaskingByGlass(String scanId) {
|
QueryWrapper<GlassInfo>wrapper = new QueryWrapper<>();
|
wrapper.eq("scan_id",scanId);
|
return this.getOne(wrapper);
|
}
|
}
|