0aa5d4f04917dd47ef9ac7a77a7308087c51ecd9.svn-base 813 B

123456789101112131415161718192021222324252627
  1. package org.jeecg.modules.demo.hzz.yhyc.service.impl;
  2. import org.jeecg.modules.demo.hzz.yhyc.entity.RmRwqd;
  3. import org.jeecg.modules.demo.hzz.yhyc.mapper.RmRwqdMapper;
  4. import org.jeecg.modules.demo.hzz.yhyc.service.IRmRwqdService;
  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 RmRwqdServiceImpl extends ServiceImpl<RmRwqdMapper, RmRwqd> implements IRmRwqdService {
  17. @Autowired
  18. private RmRwqdMapper rmRwqdMapper;
  19. @Override
  20. public List<RmRwqd> selectByMainId(String mainId) {
  21. return rmRwqdMapper.selectByMainId(mainId);
  22. }
  23. }