4d50ac3fc86cd28888b7f632254cde8d92d66976.svn-base 891 B

123456789101112131415161718192021222324252627
  1. package org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.impl;
  2. import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxhdzyzb;
  3. import org.jeecg.modules.demo.hzz.shjsgc.xmrk.mapper.RmAxhdzyzbMapper;
  4. import org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.IRmAxhdzyzbService;
  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: 2022-03-31
  13. * @Version: V1.0
  14. */
  15. @Service
  16. public class RmAxhdzyzbServiceImpl extends ServiceImpl<RmAxhdzyzbMapper, RmAxhdzyzb> implements IRmAxhdzyzbService {
  17. @Autowired
  18. private RmAxhdzyzbMapper rmAxhdzyzbMapper;
  19. @Override
  20. public List<RmAxhdzyzb> selectByMainId(String mainId) {
  21. return rmAxhdzyzbMapper.selectByMainId(mainId);
  22. }
  23. }