导出售后单

This commit is contained in:
lifenlong
2021-06-05 14:48:16 +08:00
parent b7e439e177
commit e379a2eb34
4 changed files with 29 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.validation.constraints.NotNull;
import java.util.List;
/**
* 店铺端,售后管理接口
@@ -44,6 +45,12 @@ public class AfterSaleStoreController {
return ResultUtil.data(afterSaleService.getAfterSalePages(searchParams));
}
@ApiOperation(value = "获取导出售后服务列表列表")
@GetMapping(value = "/exportAfterSaleOrder")
public ResultMessage<List<AfterSale>> exportAfterSaleOrder(AfterSaleSearchParams searchParams) {
return ResultUtil.data(afterSaleService.exportAfterSaleOrder(searchParams));
}
@ApiOperation(value = "审核售后申请")
@ApiImplicitParams({
@ApiImplicitParam(name = "afterSaleSn", value = "售后sn", required = true, paramType = "path"),