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; /** *

* 盖线产量统计 前端控制器 *

* * @author hyy * @since 2023-05-12 */ @Service public class G18ChanliangtongjiServiceImpl extends ServiceImpl implements G18ChanliangtongjiService{ @Autowired private G18ChanliangtongjiMapper g18ChanliangtongjiMapper; @Override public List queryByHeadId(String headId) { QueryWrapper q = new QueryWrapper<>(); q.eq("head_id",headId); return g18ChanliangtongjiMapper.selectList(q); } }