package org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.impl; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxfxjszycgb; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.mapper.RmAxfxjszycgbMapper; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.IRmAxfxjszycgbService; 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: 2022-03-31 * @Version: V1.0 */ @Service public class RmAxfxjszycgbServiceImpl extends ServiceImpl implements IRmAxfxjszycgbService { @Autowired private RmAxfxjszycgbMapper rmAxfxjszycgbMapper; @Override public List selectByMainId(String mainId) { return rmAxfxjszycgbMapper.selectByMainId(mainId); } }