package org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.impl; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxshgczyzbb; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.mapper.RmAxshgczyzbbMapper; import org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.IRmAxshgczyzbbService; 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 RmAxshgczyzbbServiceImpl extends ServiceImpl implements IRmAxshgczyzbbService { @Autowired private RmAxshgczyzbbMapper rmAxshgczyzbbMapper; @Override public List selectByMainId(String mainId) { return rmAxshgczyzbbMapper.selectByMainId(mainId); } }