guoshilong
2024-03-05 2f8eaa7c850445fde0cdca0e8ecddcb7e2a936a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.gistack.nky.service;
 
import cn.gistack.nky.resultpojo.NewSwFuturePo;
 
import java.util.List;
 
public interface IHsybService {
 
    List<List<String>> getFuture(String resCd);
 
    List<NewSwFuturePo> getNewFuture(String resId);
 
 
    /**
     * 同步降雨数据
     * @param resIds 水库id
     * @return
     */
    String updateCjysjByTm(List<String> resIds);
 
 
 
 
}