package org.jeecg.modules.arj.b.service.impl;
|
|
import org.jeecg.modules.arj.b.entity.ZhxxFl;
|
import org.jeecg.modules.arj.b.service.ZhxxFlService;
|
import org.jeecg.modules.arj.b.mapper.ZhxxFlMapper;
|
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;
|
|
/**
|
* <p>
|
* 综合信息辅料 前端控制器
|
* </p>
|
*
|
* @author hyy
|
* @since 2023-05-18
|
*/
|
@Service
|
public class ZhxxFlServiceImpl extends ServiceImpl<ZhxxFlMapper, ZhxxFl> implements ZhxxFlService{
|
|
@Autowired
|
private ZhxxFlMapper zhxxFlMapper;
|
|
@Override
|
public List<ZhxxFl> queryByHeadId(String headId) {
|
QueryWrapper<ZhxxFl> q = new QueryWrapper<>();
|
q.eq("head_id",headId);
|
|
return zhxxFlMapper.selectList(q);
|
|
}
|
}
|