【新增】隐私政策

This commit is contained in:
2025-10-30 12:29:03 +08:00
parent cca1847fbf
commit e6ae7d60e3
2 changed files with 33 additions and 0 deletions

View File

@@ -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";
}
}

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>隐私政策</title>
</head>
<body>
</body>
</html>