package org.jeecg.modules.arj.service.impl;
|
|
import org.jeecg.modules.arj.entity.FanbianRd;
|
import org.jeecg.modules.arj.service.FanbianRdService;
|
import org.jeecg.modules.arj.mapper.FanbianRdMapper;
|
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;
|
|
|
/**
|
* <p>
|
* 翻边生产记录 前端控制器
|
* </p>
|
*
|
* @author hyy
|
* @since 2022-11-27
|
*/
|
@Service
|
public class FanbianRdServiceImpl extends ServiceImpl<FanbianRdMapper, FanbianRd> implements FanbianRdService {
|
|
@Autowired
|
private FanbianRdMapper fanbianRdMapper;
|
|
@Override
|
public List<FanbianRd> queryByHeadId(String headId) {
|
QueryWrapper<FanbianRd> q = new QueryWrapper<>();
|
q.eq("head_id",headId);
|
|
return fanbianRdMapper.selectList(q);
|
|
}
|
}
|