Helius
2021-06-28 1ae21f2e7931839bba5187c87f1627089253e7cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.xzx.gc.user.controller;
 
import com.xzx.gc.common.request.BaseController;
import com.xzx.gc.user.service.JhyInfoService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@Api(tags = {"集物员--集物员管理"})
@Slf4j
public class AdminJhyInfoController extends BaseController {
 
    @Autowired
    private JhyInfoService jhyInfoService;
 
 
}