|
@@ -5,6 +5,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
import com.miaxis.common.config.WxpayConfig;
|
|
import com.miaxis.common.config.WxpayConfig;
|
|
import com.miaxis.common.constant.Constants;
|
|
import com.miaxis.common.constant.Constants;
|
|
import com.miaxis.wx.domain.WxOrder;
|
|
import com.miaxis.wx.domain.WxOrder;
|
|
|
|
+import com.miaxis.wx.dto.AiOrderNotifyDTO;
|
|
import com.miaxis.wx.dto.WxOrderJsonData;
|
|
import com.miaxis.wx.dto.WxOrderJsonData;
|
|
import com.miaxis.wx.dto.WxOrderNotifyDTO;
|
|
import com.miaxis.wx.dto.WxOrderNotifyDTO;
|
|
import com.miaxis.wx.service.IRefundRecordService;
|
|
import com.miaxis.wx.service.IRefundRecordService;
|
|
@@ -110,4 +111,19 @@ public class FilmNotifyController {
|
|
Boolean success;
|
|
Boolean success;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 爱奇艺回调
|
|
|
|
+ */
|
|
|
|
+ @PostMapping(value = "/aiqiyiOrderNotify")
|
|
|
|
+ @ApiOperation("电影订单回调")
|
|
|
|
+ public FilmNotifyReturnDTO wxOrderNotify(AiOrderNotifyDTO aiOrderNotifyDTO) {
|
|
|
|
+ System.out.println(aiOrderNotifyDTO);
|
|
|
|
+ FilmNotifyReturnDTO f = new FilmNotifyReturnDTO();
|
|
|
|
+ f.setCode("1");
|
|
|
|
+ f.setMessage("操作成功");
|
|
|
|
+ f.setSuccess(true);
|
|
|
|
+ return f;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|