123456789101112131415161718192021222324252627 |
- package org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.service.impl;
- import org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.entity.RmCjjl;
- import org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.mapper.RmCjjlMapper;
- import org.jeecg.modules.demo.hzz.shjsgc.sjcjrwb.service.IRmCjjlService;
- 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: 2021-11-29
- * @Version: V1.0
- */
- @Service
- public class RmCjjlServiceImpl extends ServiceImpl<RmCjjlMapper, RmCjjl> implements IRmCjjlService {
-
- @Autowired
- private RmCjjlMapper rmCjjlMapper;
-
- @Override
- public List<RmCjjl> selectByMainId(String mainId) {
- return rmCjjlMapper.selectByMainId(mainId);
- }
- }
|