OPCPointServiceImpl.java 698 B

123456789101112131415161718192021222324252627
  1. package com.sckj.opc.service;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.sckj.opc.dto.OPCPointDTO;
  4. import com.sckj.opc.entity.OPCPoint;
  5. import com.sckj.opc.mapper.OPCPointMapper;
  6. import org.springframework.stereotype.Service;
  7. import javax.annotation.Resource;
  8. import java.util.List;
  9. import java.util.Map;
  10. /**
  11. * @Author feng
  12. * @Date 2024-11-15 下午 04:39
  13. * @Description TODO
  14. */
  15. @Service
  16. public class OPCPointServiceImpl extends ServiceImpl<OPCPointMapper, OPCPoint> {
  17. @Resource
  18. OPCPointMapper opcPointMapper;
  19. public OPCPointDTO selectInfoWithServer(OPCPoint opcPoint){
  20. return opcPointMapper.selectInfoWithServer(opcPoint);
  21. }
  22. }