encourage log

master
eason 6 years ago
parent fe7c194c81
commit cbc766d441

@ -27,12 +27,13 @@ public class EncourageMoneyController {
@Resource
private EncourageService encourageService;
@RequestMapping(value = "/orders/{orderId}", method = RequestMethod.PUT)
@RequestMapping(value = "/orders/{orderId}", method = RequestMethod.GET)
public JSONObject takeEncourageMoney(@PathVariable String orderId,@ModelAttribute(CommonConsts.WECHATINFO) JSONObject wxUser,@ModelAttribute(CommonConsts.ALIUSER) JSONObject aliuser) {
String user_id = "";
if(wxUser==null){
user_id = aliuser.getString("user_id");
}else {
logger.info("====wxUser=="+wxUser.toJSONString());
user_id = wxUser.getString("openid");
}
if(StringUtils.isEmpty(user_id)){

Loading…
Cancel
Save