package org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.service.impl; import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.entity.RmGcxxcj; import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.mapper.RmGcxxcjMapper; import org.jeecg.modules.demo.hzz.sjcjrw.gcxxcj.service.IRmGcxxcjService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; /** * @Description: 工程信息采集 * @Author: jeecg-boot * @Date: 2022-01-17 * @Version: V1.0 */ @Service public class RmGcxxcjServiceImpl extends ServiceImpl implements IRmGcxxcjService { @Autowired RmGcxxcjMapper rmGcxxcjMapper; @Override public void DeleteByid(String id) { rmGcxxcjMapper.DeleteByid(id); } }