package org.jeecg.modules.arj.g.service.impl;
|
|
import org.jeecg.modules.arj.g.entity.C13Ctsy;
|
import org.jeecg.modules.arj.g.service.C13CtsyService;
|
import org.jeecg.modules.arj.g.mapper.C13CtsyMapper;
|
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-03-17
|
*/
|
@Service
|
public class C13CtsyServiceImpl extends ServiceImpl<C13CtsyMapper, C13Ctsy> implements C13CtsyService{
|
|
@Autowired
|
private C13CtsyMapper c13CtsyMapper;
|
|
@Override
|
public List<C13Ctsy> queryByHeadId(String headId) {
|
QueryWrapper<C13Ctsy> q = new QueryWrapper<>();
|
q.eq("head_id",headId);
|
|
return c13CtsyMapper.selectList(q);
|
|
}
|
}
|