init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.dk.controller.app;
|
||||
|
||||
import cn.dev33.satoken.annotation.SaIgnore;
|
||||
import com.ruoyi.component.core.domain.R;
|
||||
import com.ruoyi.dk.dto.app.req.BorrowStartReq;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/api/app")
|
||||
@SaIgnore
|
||||
public class IndexController {
|
||||
|
||||
@PostMapping("/check")
|
||||
public R<Void> check(@RequestBody BorrowStartReq req){
|
||||
return R.ok("ok");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user