...
|
...
|
@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSONObject; |
|
|
import com.yohobuy.ufo.model.response.store.StoreInfoBo;
|
|
|
import com.yohoufo.common.ApiResponse;
|
|
|
import com.yohoufo.common.annotation.IgnoreSession;
|
|
|
import com.yohoufo.common.annotation.IgnoreSignature;
|
|
|
import com.yohoufo.common.exception.UfoServiceException;
|
|
|
import com.yohoufo.product.service.StoreService;
|
|
|
import org.slf4j.Logger;
|
...
|
...
|
@@ -22,6 +23,7 @@ public class StoreController { |
|
|
private StoreService storeService;
|
|
|
|
|
|
@IgnoreSession
|
|
|
@IgnoreSignature
|
|
|
@RequestMapping(params = "method=ufo.store.queryStoreInfoById")
|
|
|
public ApiResponse queryStoreInfoById(@RequestParam("storeId") Integer storeId) {
|
|
|
if(storeId == null || storeId < 1) {
|
...
|
...
|
@@ -39,6 +41,7 @@ public class StoreController { |
|
|
}
|
|
|
|
|
|
@IgnoreSession
|
|
|
@IgnoreSignature
|
|
|
@RequestMapping(params = "method=ufo.store.isLocationInStore")
|
|
|
public ApiResponse isLocationInStore(@RequestParam("store_id") Integer storeId,
|
|
|
@RequestParam("user_longitude") Double userLongitude,
|
...
|
...
|
|