123456789101112131415161718192021222324252627 |
- package org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.impl;
- import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxhdzyzb;
- import org.jeecg.modules.demo.hzz.shjsgc.xmrk.mapper.RmAxhdzyzbMapper;
- import org.jeecg.modules.demo.hzz.shjsgc.xmrk.service.IRmAxhdzyzbService;
- 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 RmAxhdzyzbServiceImpl extends ServiceImpl<RmAxhdzyzbMapper, RmAxhdzyzb> implements IRmAxhdzyzbService {
-
- @Autowired
- private RmAxhdzyzbMapper rmAxhdzyzbMapper;
-
- @Override
- public List<RmAxhdzyzb> selectByMainId(String mainId) {
- return rmAxhdzyzbMapper.selectByMainId(mainId);
- }
- }
|