whycxzp
2021-11-05 c1aab916a7cccbbb2a2d8cc2b2e95a80dc64f40f
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
package com.whyc.controller;
 
import com.whyc.dto.Response;
import com.whyc.service.BaoJiGroupUserService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
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.RestController;
 
/**
 * 包机组-用户
 */
@RestController
@RequestMapping("baoJiGroupUser")
@Api(tags = "包机组-用户")
public class BaoJiGroupUserController {
 
    @Autowired
    private BaoJiGroupUserService service;
 
    @GetMapping("groupAndUser")
    @ApiOperation(value = "查询所有的包机组和对应用户")
    public Response getGroupAndUserList(){
        //return new Response().set(1,service.getGroupAndUserList());
        return null;
    }
 
 
}