zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
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
26
27
28
29
30
31
32
package com.nq.controller.backend;
 
import com.nq.service.IStockSubscribeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @ClassName : AdminNewStockController  //新股
 * @Description :   //描述
 * @Author :  tf //作者
 * @Date: 2022/10/24  22:53
 */
@RestController
@RequestMapping({"/admin/newstock/"})
public class AdminNewStockController {
    @Autowired
    IStockSubscribeService iStockSubscribeService;
    /**
    * @Description:  //新股列表
    * @Param:
    * @return:
    * @Author: tf
    * @Date: 2022/10/24
    */
    @RequestMapping({"list.do"})
    public void list(){
 
    }
 
 
}