123456789101112131415161718192021222324252627 |
- 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<RmAxfxjszycgbMapper, RmAxfxjszycgb> implements IRmAxfxjszycgbService {
-
- @Autowired
- private RmAxfxjszycgbMapper rmAxfxjszycgbMapper;
-
- @Override
- public List<RmAxfxjszycgb> selectByMainId(String mainId) {
- return rmAxfxjszycgbMapper.selectByMainId(mainId);
- }
- }
|