“linengliang”
2023-11-21 f4185f3c8cf71d613eb1a15928f2d8cf60027d68
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
package org.jeecg.modules.eam.service.impl;
 
import org.jeecg.modules.eam.entity.StreamOperation;
import org.jeecg.modules.eam.mapper.StreamOperationMapper;
import org.jeecg.modules.eam.service.IStreamOperationService;
import org.springframework.stereotype.Service;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
 
/**
 * @Description: 操作记录
 * @Author: jeecg-boot
 * @Date:   2023-11-21
 * @Version: V1.0
 */
@Service
public class StreamOperationServiceImpl extends ServiceImpl<StreamOperationMapper, StreamOperation> implements IStreamOperationService {
 
    @Autowired
    private StreamOperationMapper streamOperationMapper;
 
    @Override
    public List<StreamOperation> selectByMainId(String mainId) {
        return streamOperationMapper.selectByMainId(mainId);
    }
}