package org.jeecg.modules.arj.g.service.impl; import org.jeecg.modules.arj.g.entity.Jg11Qj; import org.jeecg.modules.arj.g.service.Jg11QjService; import org.jeecg.modules.arj.g.mapper.Jg11QjMapper; 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; /** *

* 11-502#集盖机清洁记录 前端控制器 *

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