package org.jeecg.modules.arj.g.service.impl; import org.jeecg.modules.arj.g.entity.Zj5Wg; import org.jeecg.modules.arj.g.service.Zj5WgService; import org.jeecg.modules.arj.g.mapper.Zj5WgMapper; 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; /** *

* 外观质量检验 前端控制器 *

* * @author hyy * @since 2023-03-17 */ @Service public class Zj5WgServiceImpl extends ServiceImpl implements Zj5WgService{ @Autowired private Zj5WgMapper zj5WgMapper; @Override public List queryByHeadId(String headId) { QueryWrapper q = new QueryWrapper<>(); q.eq("head_id",headId); return zj5WgMapper.selectList(q); } }