AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package org.jeecg.modules.arj.g.service.impl;
 
import org.jeecg.modules.arj.g.entity.Gyj16;
import org.jeecg.modules.arj.g.service.GyjService;
import org.jeecg.modules.arj.g.mapper.GyjMapper;
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>
 * 502底盖光检机记录表 前端控制器
 * </p>
 *
 * @author hyy
 * @since 2023-03-17
 */
@Service
public class GyjServiceImpl extends ServiceImpl<GyjMapper, Gyj16> implements GyjService{
 
@Autowired
private GyjMapper  gyjMapper;
 
@Override
public List<Gyj16> queryByHeadId(String headId) {
        QueryWrapper<Gyj16> q = new QueryWrapper<>();
        q.eq("head_id",headId);
 
        return  gyjMapper.selectList(q);
 
        }
}