package org.jeecg.modules.demo.hzz.yhyc.service.impl; import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbfjb; import org.jeecg.modules.demo.hzz.yhyc.mapper.RmMbfjbMapper; import org.jeecg.modules.demo.hzz.yhyc.service.IRmMbfjbService; 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 RmMbfjbServiceImpl extends ServiceImpl implements IRmMbfjbService { @Autowired private RmMbfjbMapper rmMbfjbMapper; @Override public List selectByMainId(String mainId) { return rmMbfjbMapper.selectByMainId(mainId); } }