3e9e6be01319478ba62eac1714f9b26cb06cedf2.svn-base 827 B

123456789101112131415161718192021222324252627
  1. package org.jeecg.modules.demo.hzz.yhyc.service.impl;
  2. import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbfjb;
  3. import org.jeecg.modules.demo.hzz.yhyc.mapper.RmMbfjbMapper;
  4. import org.jeecg.modules.demo.hzz.yhyc.service.IRmMbfjbService;
  5. import org.springframework.stereotype.Service;
  6. import java.util.List;
  7. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. /**
  10. * @Description: 目标分解表
  11. * @Author: jeecg-boot
  12. * @Date: 2021-11-26
  13. * @Version: V1.0
  14. */
  15. @Service
  16. public class RmMbfjbServiceImpl extends ServiceImpl<RmMbfjbMapper, RmMbfjb> implements IRmMbfjbService {
  17. @Autowired
  18. private RmMbfjbMapper rmMbfjbMapper;
  19. @Override
  20. public List<RmMbfjb> selectByMainId(String mainId) {
  21. return rmMbfjbMapper.selectByMainId(mainId);
  22. }
  23. }