package org.jeecg.modules.arj.b.service.impl; import org.jeecg.modules.arj.b.entity.ZhxxBy; import org.jeecg.modules.arj.b.service.ZhxxByService; import org.jeecg.modules.arj.b.mapper.ZhxxByMapper; 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-05-18 */ @Service public class ZhxxByServiceImpl extends ServiceImpl implements ZhxxByService{ @Autowired private ZhxxByMapper zhxxByMapper; @Override public List queryByHeadId(String headId) { QueryWrapper q = new QueryWrapper<>(); q.eq("head_id",headId); return zhxxByMapper.selectList(q); } }