使用postman跑接口:
本地是:http://localhost:8080/lottery/ticket/code_times_info_ajax?round=1&count=100&type=1&code=5&codes=[ 2, 3, 7 ]
可以获得服务器端返回的数据
服务器端:域名+/lottery/ticket/code_times_info_ajax?round=1&count=100&type=1&code=5&codes=[ 2, 3, 7 ]
注:服务器端是本地打成war包发布上去的
public Object queryCodeTimesInfo(@Param("round") int start,@Param("count") int count,@Param("type")int type, @Param("code") int code,
@Param("codes") int[] numArray)