Commit 2925000c authored by lijun's avatar lijun

申请就诊卡

parent 94735b8d
package com.smart.hospital.register.controller;
import com.smart.hospital.common.core.util.R;
import com.smart.hospital.common.security.annotation.Inner;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
......@@ -11,4 +14,9 @@ import org.springframework.web.bind.annotation.RestController;
@Api(value = "register", tags = "挂号模块对外提供接口")
public class RegisterController {
@ApiOperation(value = "申请就诊卡")
@PostMapping(value = "/apply/card")
public R applyPatientCard() {
return R.ok();
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment