liuxiaolong
2019-05-06 71af9c46c24b562acc00a71ec6c97c04eb048d9c
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
33
34
35
36
package com.cloud.device.controller;
 
import com.cloud.device.constants.Constants;
import com.cloud.device.filter.AuthNoneIgnore;
import com.cloud.device.model.Dic;
import com.cloud.device.service.DicService;
import com.cloud.device.vo.OrgDeviceVO;
import com.cloud.model.common.Result;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
@Slf4j
@Api(value = "DicController", description = "字典管理")
@RequestMapping("/data/api-d/dic")
@RestController
public class DicController {
 
    @Autowired
    private DicService dicService;
 
 
 
}