package org.jeecg.modules.arj.g.service.impl;
|
|
import org.jeecg.modules.arj.g.entity.Sh14ZjFp;
|
import org.jeecg.modules.arj.g.service.Sh14ZjFpService;
|
import org.jeecg.modules.arj.g.mapper.Sh14ZjFpMapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import org.springframework.stereotype.Service;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import java.util.List;
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
/**
|
* <p>
|
* 生产情况报表-注胶机废品 前端控制器
|
* </p>
|
*
|
* @author hyy
|
* @since 2023-03-17
|
*/
|
@Service
|
public class Sh14ZjFpServiceImpl extends ServiceImpl<Sh14ZjFpMapper, Sh14ZjFp> implements Sh14ZjFpService{
|
|
@Autowired
|
private Sh14ZjFpMapper sh14ZjFpMapper;
|
|
@Override
|
public List<Sh14ZjFp> queryByHeadId(String headId) {
|
QueryWrapper<Sh14ZjFp> q = new QueryWrapper<>();
|
q.eq("head_id",headId);
|
|
return sh14ZjFpMapper.selectList(q);
|
|
}
|
}
|