Commit 992d784b authored by hezhen's avatar hezhen

123

parent 5b283654
......@@ -101,7 +101,7 @@ public class OrderTourVerificationBiz{
//核销列表
public ObjectRestResponse getVerifications(TourGoodOrderFindVo tourGoodOrderFindVo){
return ObjectRestResponse.succ(tourFeign.findTourGoodOrders(BeanUtil.beanToMap(tourGoodOrderFindVo)));
return ObjectRestResponse.succ(tourFeign.findTourGoodOrders(tourGoodOrderFindVo));
}
public boolean isPower(List<BranchCompany> list,Integer companyId){
......
......@@ -83,8 +83,8 @@ public interface TourFeign {
* @param tourGoodOrderFindVo
* @return
*/
@GetMapping("/tourGood/verfication/orders")
PageDataVO<TourGoodOrderVo> findTourGoodOrders(@RequestParam("tourGoodOrderFindVo") Map<String,Object> tourGoodOrderFindVo);
@RequestMapping(value = "/tourGood/verfication/orders", method = RequestMethod.POST)
PageDataVO<TourGoodOrderVo> findTourGoodOrders(@RequestBody TourGoodOrderFindVo tourGoodOrderFindVo);
@ApiOperation("首页旅游列表")
@GetMapping(value = "/tourGood/app/shopList")
......
......@@ -21,8 +21,8 @@ public class TourGoodVerificationController extends BaseController<TourGoodVerif
* @return
*/
@ApiOperation("订单列表的查询")
@GetMapping("/orders")
public PageDataVO<TourGoodOrderVo> findTourGoodOrders( TourGoodOrderFindVo tourGoodOrderFindVo){
@RequestMapping(value = "/orders", method = RequestMethod.POST)
public PageDataVO<TourGoodOrderVo> findTourGoodOrders( @RequestBody TourGoodOrderFindVo tourGoodOrderFindVo){
PageDataVO<TourGoodOrderVo> tourGoodOrderPageDataVo = getBaseBiz().findTourGoodOrdersPage(tourGoodOrderFindVo);
return tourGoodOrderPageDataVo;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment