You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.9 KiB
80 lines
2.9 KiB
package com.hfkj.controller;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.hfkj.common.security.UserCenter;
|
|
import com.hfkj.common.utils.ResponseMsgUtil;
|
|
import com.hfkj.model.ResponseData;
|
|
import com.hfkj.model.UserSessionObject;
|
|
import com.hfkj.service.meituan.MeiTuanService;
|
|
import com.hfkj.service.user.BsUserAccountRecordService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
@Controller
|
|
@RequestMapping(value="/takeOut")
|
|
@Api(value="外卖")
|
|
public class TakeOutController {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(TakeOutController.class);
|
|
|
|
@Autowired
|
|
private UserCenter userCenter;
|
|
|
|
@RequestMapping(value="/generateLink",method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "自助取链接口 ")
|
|
public ResponseData generateLink(@RequestParam(value = "actId" , required = false) Long actId,
|
|
@RequestParam(value = "linkType" , required = false) Integer linkType
|
|
) {
|
|
try {
|
|
// 用户session
|
|
UserSessionObject session = userCenter.getSessionModel(UserSessionObject.class);
|
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
jsonObject.put("actId" , actId);
|
|
jsonObject.put("sid" , session.getUser().getId());
|
|
jsonObject.put("linkType" , linkType);
|
|
|
|
JSONObject object = MeiTuanService.generateLink(jsonObject);
|
|
|
|
return ResponseMsgUtil.success(object);
|
|
|
|
} catch (Exception e) {
|
|
log.error("error!",e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value="/orderList",method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "订单列表查询接口")
|
|
public ResponseData orderList(
|
|
@RequestParam(value = "actId" , required = false) Long actId,
|
|
@RequestParam(value = "startTime" , required = false) Long startTime,
|
|
@RequestParam(value = "endTime" , required = false) Integer endTime
|
|
) {
|
|
try {
|
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
jsonObject.put("startTime" , startTime);
|
|
jsonObject.put("endTime" , endTime);
|
|
jsonObject.put("actId" , actId);
|
|
|
|
JSONObject object = MeiTuanService.orderList(jsonObject);
|
|
|
|
return ResponseMsgUtil.success(object);
|
|
|
|
} catch (Exception e) {
|
|
log.error("error!",e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
}
|
|
|