更新政府端和银行端

This commit is contained in:
2025-09-17 18:04:28 +08:00
parent f35ceef31f
commit e4287b83fe
185 changed files with 78320 additions and 189 deletions

View File

@@ -0,0 +1,15 @@
const express = require('express');
const router = express.Router();
// 监管数据统计
router.get('/stats', (req, res) => {
res.json({
code: 200,
data: {
entityCount: 0,
inspectionCount: 0
}
});
});
module.exports = router;