|  |  |  | 
|---|
|  |  |  | return memberService.memberCoupon(mallMemberCouponDto); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation(value = "创建订单优惠卷列表") | 
|---|
|  |  |  | @ApiResponses({ | 
|---|
|  |  |  | @ApiResponse(code = 200, message = "success", response = MallMemberCouponVo.class) | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | @PostMapping(value = "/memberPayCoupon") | 
|---|
|  |  |  | public FebsResponse memberPayCoupon(@RequestBody MallMemberCouponDto mallMemberCouponDto) { | 
|---|
|  |  |  | return memberService.memberPayCoupon(mallMemberCouponDto); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation(value = "优惠卷详情", notes = "优惠卷详情") | 
|---|
|  |  |  | @ApiResponses({ | 
|---|
|  |  |  | @ApiResponse(code = 200, message = "success", response = MallMemberCouponVo.class) | 
|---|
|  |  |  | 
|---|
|  |  |  | return memberService.couponDetails(id); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation(value = "登录事件", notes = "登录事件") | 
|---|
|  |  |  | @GetMapping(value = "/loginEvent") | 
|---|
|  |  |  | public FebsResponse loginEvent() { | 
|---|
|  |  |  | return new FebsResponse().success().data(memberService.loginEvent()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|