问诊大厅代码提交
parent
b36d38e286
commit
20ae059e00
@ -0,0 +1,22 @@
|
||||
package com.supervision.controller;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 问诊大厅
|
||||
*/
|
||||
@Api(tags = "问诊大厅")
|
||||
@RestController
|
||||
@RequestMapping("diagnoseHall")
|
||||
@RequiredArgsConstructor
|
||||
public class DiagnoseHallController {
|
||||
|
||||
@ApiOperation("获取问诊资源")
|
||||
public void achieveDiagnoseResource(){
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue