|
|
@@ -108,11 +108,11 @@ public class OrderController extends BaseController {
|
|
|
@RequestParam(required = false) Long couponId,
|
|
|
@RequestParam(required = false) Long invitor,
|
|
|
@RequestParam String sign,
|
|
|
- @RequestParam(defaultValue = "false") boolean priority) {
|
|
|
+ @RequestParam(defaultValue = "false") boolean vip) {
|
|
|
final User user = SecurityUtils.getAuthenticatedUser();
|
|
|
return new HashMap<>() {{
|
|
|
put("id", orderService.mqCreate(user.getId(), collectionId, qty, addressId, couponId, invitor, sign,
|
|
|
- priority, user.getVipPurchase()));
|
|
|
+ vip, user.getVipPurchase()));
|
|
|
}};
|
|
|
}
|
|
|
|