package org.jeecg.modules.demo.hzz.yhyc.service.impl; import org.jeecg.modules.demo.hzz.yhyc.entity.RmZrycsqd; import org.jeecg.modules.demo.hzz.yhyc.mapper.RmZrycsqdMapper; import org.jeecg.modules.demo.hzz.yhyc.service.IRmZrycsqdService; import org.springframework.stereotype.Service; import java.util.List; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.beans.factory.annotation.Autowired; /** * @Description: 责任与措施清单 * @Author: jeecg-boot * @Date: 2021-11-26 * @Version: V1.0 */ @Service public class RmZrycsqdServiceImpl extends ServiceImpl implements IRmZrycsqdService { @Autowired private RmZrycsqdMapper rmZrycsqdMapper; @Override public List selectByMainId(String mainId) { return rmZrycsqdMapper.selectByMainId(mainId); } }