Authored by tanling

微信1;支付宝2

... ... @@ -2,8 +2,8 @@ package com.yohoufo.order.common;
public enum Payment {
ALIPAY(1, "trade.precreate", "支付宝"),
WECHAT(2, "wx.unifiedOrder", "微信");
ALIPAY(2, "trade.precreate", "支付宝"),
WECHAT(1, "wx.unifiedOrder", "微信");
int code;
... ...
... ... @@ -57,7 +57,6 @@ public class SubmitOrderServiceImpl implements ISubmitOrderService {
@Service
@Transactional
public static class OrderCreateService{
@Autowired
... ...