|  |  |  | 
|---|
|  |  |  | import org.springframework.http.ResponseEntity; | 
|---|
|  |  |  | import org.springframework.validation.annotation.Validated; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.*; | 
|---|
|  |  |  | import org.springframework.web.multipart.MultipartFile; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.servlet.http.HttpServletResponse; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RestController | 
|---|
|  |  |  | 
|---|
|  |  |  | return returnData(R.SUCCESS.getCode(), salesService.selectSalesList(page, dto)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping({"/list/export"}) | 
|---|
|  |  |  | @ApiOperation(value = "售后列表导出") | 
|---|
|  |  |  | public void exportSales(HttpServletResponse response, OrderItemSalesQueryDTO dto){ | 
|---|
|  |  |  | salesService.exportSalesList(response, dto); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping("/list/view") | 
|---|
|  |  |  | @ApiOperation(value = "售后详情") | 
|---|
|  |  |  | @ApiImplicitParams({ | 
|---|