package com.lf.server.controller.data;
|
|
import com.lf.server.controller.all.BaseQueryController;
|
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 BaseQueryController {
|
}
|