You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.softegg.freetogo.HeatMap.service;
|
|
|
|
public interface HeatMapService {
|
|
int[] provinceDemandsHeatMap();//获得每个省份的游客需求数目
|
|
|
|
int[] cityDemandsHeatMap(String province);//获得目标省份的游客需求数目
|
|
|
|
int[] provinceGuideServiceHeatMap();
|
|
|
|
int[] cityGuideServiceHeatMap(String province);
|
|
}
|