1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.moral.api.service;
|
| import java.util.Map;
|
| /**
| * @ClassName reptileResultService
| * @Description TODO
| * @Author @cjl
| * @Date 2024-02-27 13:50
| * @Version 1.0
| */
| public interface ReptileResultService {
|
| Map<String,Object> getYcDaily(String url,String cookie,String time,int type);
|
| }
|
|