package org.jeecg.modules.arj.service.impl; import org.jeecg.modules.arj.entity.JiguanRd2; import org.jeecg.modules.arj.service.JiguanRd2Service; import org.jeecg.modules.arj.mapper.JiguanRd2Mapper; 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; /** *

* 集罐生产记录2 前端控制器 *

* * @author hyy * @since 2022-11-28 */ @Service public class JiguanRd2ServiceImpl extends ServiceImpl implements JiguanRd2Service { @Autowired private JiguanRd2Mapper jiguanRd2Mapper; @Override public List queryByHeadId(String headId) { QueryWrapper q = new QueryWrapper<>(); q.eq("head_id",headId); return jiguanRd2Mapper.selectList(q); } }