...
|
...
|
@@ -3,14 +3,12 @@ package com.yohoufo.order.controller; |
|
|
import com.yoho.core.rest.annotation.ServiceDesc;
|
|
|
import com.yoho.tools.common.beans.ApiResponse;
|
|
|
import com.yohobuy.ufo.model.order.req.BuyerOrderMetaUpdateReq;
|
|
|
import com.yohobuy.ufo.model.user.req.AuthorizeInfoReq;
|
|
|
import com.yohoufo.common.annotation.IgnoreSession;
|
|
|
import com.yohoufo.common.annotation.IgnoreSignature;
|
|
|
import com.yohoufo.dal.user.model.UserAuthorizeInfo;
|
|
|
import com.yohoufo.order.service.IBuyerOrderMetaService;
|
|
|
import com.yohoufo.order.utils.LoggerUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
...
|
...
|
@@ -20,7 +18,7 @@ import org.springframework.web.bind.annotation.RestController; |
|
|
@RequestMapping(value="/order/buyerOrderMeta")
|
|
|
@ServiceDesc("orderBuyerOrderMeta")
|
|
|
public class BuyerOrderMeta4PlatformController {
|
|
|
private final Logger logger = LoggerFactory.getLogger(BuyerOrderMeta4PlatformController.class);
|
|
|
private final Logger logger = LoggerUtils.getBuyerOrderLogger();
|
|
|
|
|
|
@Autowired
|
|
|
private IBuyerOrderMetaService buyerOrderMetaService;
|
...
|
...
|
|