Authored by Lixiaodi

增加@RequestBody

... ... @@ -10,6 +10,7 @@ import org.apache.commons.lang.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;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
... ... @@ -253,7 +254,7 @@ public class PaymentController {
@IgnoreSignature
@IgnoreSession
@RequestMapping(params = "method=ufo.order.manualDealMon")
public ApiResponse manualDealMon(ManualDealRequest req) {
public ApiResponse manualDealMon(@RequestBody ManualDealRequest req) {
try {
paymentService.manualDeal(req);
} catch (ServiceException e) {
... ...