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
package org.jeecg.modules.arj.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import org.jeecg.modules.arj.entity.LineFeipintongji;
import org.jeecg.modules.arj.mapper.LineFeipintongjiMapper;
import org.jeecg.modules.arj.service.LineFeipintongjiService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * <p>
 * 产量统计 服务实现类
 * </p>
 *
 * @author jinjun.huang
 * @since 2022-11-21
 */
@Service
public class LineFeipintongjiServiceImpl extends ServiceImpl<LineFeipintongjiMapper, LineFeipintongji> implements LineFeipintongjiService {
 
    @Autowired
    private LineFeipintongjiMapper lineFeipintongjiMapper ;
    @Override
    public List<LineFeipintongji> queryByHeadId(String headId) {
        QueryWrapper<LineFeipintongji> q = new QueryWrapper<>();
        q.eq("head_id",headId);
        return lineFeipintongjiMapper.selectList(q);
 
    }
}