liurunyu
4 天以前 61ab3cc7c2fc0b5e8b9fa78f47e427761e1ad61e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.dy.pipIrrProject.mqtt.weather;
 
import com.dy.pipIrrGlobal.daoPr.PrStWeatherMapper;
import com.dy.pipIrrGlobal.voPr.VoMqttSimple;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @Author: liurunyu
 * @Date: 2025/6/18 15:15
 * @Description
 */
@Slf4j
@Service
public class WeatherSv {
 
    @Autowired
    private PrStWeatherMapper dao;
 
    public List<VoMqttSimple> allSimple(){
        return this.dao.selectAllSimple() ;
    }
}