123456789101112131415161718192021222324252627 |
- package com.sckj.opc.service;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.sckj.opc.dto.OPCPointDTO;
- import com.sckj.opc.entity.OPCPoint;
- import com.sckj.opc.mapper.OPCPointMapper;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.util.List;
- import java.util.Map;
- /**
- * @Author feng
- * @Date 2024-11-15 下午 04:39
- * @Description TODO
- */
- @Service
- public class OPCPointServiceImpl extends ServiceImpl<OPCPointMapper, OPCPoint> {
- @Resource
- OPCPointMapper opcPointMapper;
- public OPCPointDTO selectInfoWithServer(OPCPoint opcPoint){
- return opcPointMapper.selectInfoWithServer(opcPoint);
- }
- }
|