【新增】隐私政策
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.corewing.app.modules.app;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
/**
|
||||
* 隐私政策与协议
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/agreement")
|
||||
public class AgreementController {
|
||||
|
||||
/**
|
||||
* 隐私政策列表
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/viewList")
|
||||
public String viewList() {
|
||||
return "app/agreement/index";
|
||||
}
|
||||
|
||||
}
|
||||
10
src/main/resources/templates/app/agreement/index.html
Normal file
10
src/main/resources/templates/app/agreement/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>隐私政策</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user