package org.jeecg.modules.arj.g.service.impl;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.arj.g.entity.G18Chanliangtongji;
|
import org.jeecg.modules.arj.g.mapper.G18ChanliangtongjiMapper;
|
import org.jeecg.modules.arj.g.service.G18ChanliangtongjiService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 盖线产量统计 前端控制器
|
* </p>
|
*
|
* @author hyy
|
* @since 2023-05-12
|
*/
|
@Service
|
public class G18ChanliangtongjiServiceImpl extends ServiceImpl<G18ChanliangtongjiMapper, G18Chanliangtongji> implements G18ChanliangtongjiService{
|
|
@Autowired
|
private G18ChanliangtongjiMapper g18ChanliangtongjiMapper;
|
|
@Override
|
public List<G18Chanliangtongji> queryByHeadId(String headId) {
|
QueryWrapper<G18Chanliangtongji> q = new QueryWrapper<>();
|
q.eq("head_id",headId);
|
|
return g18ChanliangtongjiMapper.selectList(q);
|
|
}
|
}
|