1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.yssh.service;
|
| import com.yssh.entity.YsshWeather;
|
| import java.util.List;
|
| /**
| * @author wMeng
| * @ClassName YsshWeatherService
| * @Description TODO
| * @date 2022/10/30 14:11
| * @Version 1.0
| */
| public interface YsshWeatherService {
| List<YsshWeather> query(String begin, String end);
| List<YsshWeather> getAll();
| public int insert(YsshWeather ysshWeather);
| int delete(String id);
| }
|
|