Authored by mali

NFC分享界面接口去掉session校验

package com.yohoufo.product.controller;
import com.yohoufo.common.annotation.IgnoreSession;
import com.yohoufo.product.service.impl.ProductIdentifyHandle;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
... ... @@ -196,6 +197,7 @@ public class ProductIdentifyController {
@ApiRespCode(code=200,desc="查询成功")
@ApiRespCode(code=402,desc="查询失败")
@IgnoreSignature
@IgnoreSession
@RequestMapping(params = "method=ufo.product.shareIdentifyInfo")
public ApiResponse shareIdentifyInfo(@RequestParam(value = "tagId", required = true) String tagId) throws GatewayException {
logger.info("enter shareIdentifyInfo with tagId={}", tagId);
... ...