package org.jeecg.modules.arj.service.impl; import org.jeecg.modules.arj.entity.FanbianCl; import org.jeecg.modules.arj.service.FanbianClService; import org.jeecg.modules.arj.mapper.FanbianClMapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import java.util.List; /** *

* 翻边测量 前端控制器 *

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