package com.lf.server.controller.data;
|
|
import com.lf.server.controller.all.BaseController;
|
import io.swagger.annotations.Api;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* 数据检索
|
* @author WWW
|
*/
|
@Api(tags = "数据管理\\字典管理")
|
@RestController
|
@RequestMapping("/dataQuery")
|
public class DataQueryController extends BaseController {
|
//
|
}
|