1
zj
2025-04-30 27310910e4c545b7acfffbca9e2e85c566561fe8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.nq.controller.backend;
 
import com.nq.common.ServerResponse;
import com.nq.pojo.UserPendingorder;
import com.nq.service.UserPendingorderService;
import com.nq.vo.position.UserPendingorderVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
import javax.servlet.http.HttpServletRequest;
 
@RestController
@RequestMapping({"/admin/pending/"})
public class AdminPendingorder {
    @Autowired
    UserPendingorderService userPendingorderService;
 
 
 
 
 
}