|
@ -0,0 +1,36 @@
|
|
|
package com.yihu.jw.entrance.controller;
|
|
|
|
|
|
|
|
|
import com.yihu.jw.hospital.prescription.service.entrance.TnyyEntranceService;
|
|
|
import com.yihu.jw.restmodel.web.ListEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
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.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2020/1/19.
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping(value ="/tnyy")
|
|
|
@Api(value = "泰安中医院视图解析", description = "泰安中医院视图解析", tags = {"泰安中医院视图解析"})
|
|
|
public class TnyyController extends EnvelopRestEndpoint {
|
|
|
|
|
|
@Autowired
|
|
|
private TnyyEntranceService tnyyEntranceService;
|
|
|
|
|
|
@GetMapping(value = "/queryBySql")
|
|
|
@ApiOperation(value = "视图统一查询")
|
|
|
public ListEnvelop createSQLQuery(@ApiParam(name = "sql", value = "sql语句", required = true)
|
|
|
@RequestParam(value = "sql",required = true)String sql){
|
|
|
return success(tnyyEntranceService.queryBySql(sql));
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|