package com.lyms.talkonlineweb.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
import com.lyms.talkonlineweb.annotation.Resubmit;
import com.lyms.talkonlineweb.annotation.TokenRequired;
import com.lyms.talkonlineweb.domain.LymsGoods;
import com.lyms.talkonlineweb.domain.LymsOrder;
import com.lyms.talkonlineweb.domain.LymsPatient;
import com.lyms.talkonlineweb.enums.PayStatus;
import com.lyms.talkonlineweb.result.BaseResponse;
import com.lyms.talkonlineweb.service.LymsGoodsService;
import com.lyms.talkonlineweb.service.LymsOrderService;
import com.lyms.talkonlineweb.service.LymsPatientService;
import com.lyms.talkonlineweb.util.*;
import lombok.extern.log4j.Log4j2;
import org.apache.commons.io.IOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;
/**
*
*/
@RestController
@RequestMapping("order/refund")
@Log4j2
public class OrderRefundController {
/**
*
* @return
*/
@GetMapping("/queryUncompleteOrders")
@TokenRequired
public BaseResponse queryUncompleteOrders(@RequestHeader String authorization){
return null;
}
}