90af39a5e3186db6d4da717f510c90e0387eb708.svn-base 824 B

1234567891011121314151617181920212223242526
  1. package org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.service.impl;
  2. import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.entity.RmGcxxcj;
  3. import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.mapper.RmGcxxcjMapper;
  4. import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.service.IRmGcxxcjService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  8. /**
  9. * @Description: 工程信息采集
  10. * @Author: jeecg-boot
  11. * @Date: 2022-01-17
  12. * @Version: V1.0
  13. */
  14. @Service
  15. public class RmGcxxcjServiceImpl extends ServiceImpl<RmGcxxcjMapper, RmGcxxcj> implements IRmGcxxcjService {
  16. @Autowired
  17. RmGcxxcjMapper rmGcxxcjMapper;
  18. @Override
  19. public void DeleteByid(String id) {
  20. rmGcxxcjMapper.DeleteByid(id);
  21. }
  22. }