|
@@ -1,46 +0,0 @@
|
|
|
-package com.sqx.modules.errand.controller.app;
|
|
|
|
|
-
|
|
|
|
|
-import cn.hutool.json.JSONUtil;
|
|
|
|
|
-import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
-import com.sqx.common.exception.SqxException;
|
|
|
|
|
-import com.sqx.common.utils.PageUtils;
|
|
|
|
|
-import com.sqx.common.utils.Result;
|
|
|
|
|
-import com.sqx.modules.app.annotation.Login;
|
|
|
|
|
-import com.sqx.modules.app.entity.UserEntity;
|
|
|
|
|
-import com.sqx.modules.app.entity.queryRiderVo;
|
|
|
|
|
-import com.sqx.modules.app.service.UserService;
|
|
|
|
|
-import com.sqx.modules.common.service.CommonInfoService;
|
|
|
|
|
-import com.sqx.modules.errand.dto.*;
|
|
|
|
|
-import com.sqx.modules.errand.entity.*;
|
|
|
|
|
-import com.sqx.modules.errand.service.ErrandComplaintService;
|
|
|
|
|
-import com.sqx.modules.errand.service.TbIndentService;
|
|
|
|
|
-import com.sqx.modules.errand.service.TransferRecordService;
|
|
|
|
|
-import com.sqx.modules.errand.vo.queryOrderInfoVo;
|
|
|
|
|
-import icu.xuyijie.secureapi.annotation.DecryptParam;
|
|
|
|
|
-import io.swagger.annotations.Api;
|
|
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
|
|
-import io.swagger.annotations.ApiParam;
|
|
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
-import org.apache.commons.lang.StringUtils;
|
|
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
|
|
-
|
|
|
|
|
-import javax.validation.Valid;
|
|
|
|
|
-import java.text.SimpleDateFormat;
|
|
|
|
|
-import java.util.*;
|
|
|
|
|
-
|
|
|
|
|
-@RestController
|
|
|
|
|
-@RequestMapping("/app/transferRecord")
|
|
|
|
|
-@Api(value = "转单记录", tags = {"转单记录"})
|
|
|
|
|
-@Slf4j
|
|
|
|
|
-public class TransferRecordController {
|
|
|
|
|
- @Autowired
|
|
|
|
|
- private TransferRecordService transferRecordService;
|
|
|
|
|
-
|
|
|
|
|
- @GetMapping(value = "queryTransferRecords")
|
|
|
|
|
- @ApiOperation("查看转单记录分页数据")
|
|
|
|
|
- public Result queryTransferRecords( @RequestParam Long page, @RequestParam Long limit, @RequestParam Long orderId) {
|
|
|
|
|
- return transferRecordService.transferRecordById(page, limit, orderId);
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|